$(document).ready(function(){
				   
	$('input[type=checkbox],input[type=radio]').prettyCheckboxes();
	
	$.fn.hover = function() {
		return this.mouseover(function() { 
			$(this).addClass("hover"); 
		}).mouseout(function() { 
			$(this).removeClass("hover"); 
		});
	};
	$("#submit").hover();
	
	$("ul#map").treeview({
		collapsed: true,
		unique: true,
		persist: "location"
	});
});
