$(document).ready(function() {

		/* --- Drop Menus --- */
		$('ul.sf-menu').superfish(); 

		/* --- SUB PANEL # 1 --- */
		$("#hoods").hide(); //Hide all content
		var hidepanelA = false;
		 $("#n-neighbourhoods .gnav").hover(function(){
				if (hidepanelA) clearTimeout(hidepanelA);
				$("#hoods").fadeIn("fast");
				$("#n-neighbourhoods .gnav").addClass('on');
			}, function() {
				hidepanelA = setTimeout(function() {
				$("#hoods").fadeOut("fast");
				$("#n-neighbourhoods .gnav").removeClass('on');
				}, 0);
			});
			$("#hoods").hover(function(){
				if (hidepanelA) clearTimeout(hidepanelA);
			}, function() {
				hidepanelA = setTimeout(function() {$("#hoods").fadeOut("fast");}, 250);
				$("#n-neighbourhoods .gnav").removeClass('on');
		});

		/* lightbox */
		$(".preview").colorbox();
		$(".floorplans").colorbox({iframe:true, width:920, height:760});	
		$("#sub-floorplans a").colorbox({iframe:true, width:920, height:760});	
		$(".siteplan").colorbox({iframe:true, width:1000, height:650});	
		$(".map").colorbox({iframe:true, width:580, height:480});			

				
});

