jQuery.noConflict();
		jQuery(document).ready(function(){
		
		//drop down menu
		var thetimeout=0;
	
		jQuery(".downdepartments").click(function(){
		return false;
		});
		
		jQuery(".downdepartments").hover(function(){
		jQuery(".departmentsdropped").show();
		});
		
			
		jQuery(".downdepartments").mouseleave(function(){
		thetimeout=setTimeout(function(){
				jQuery(".departmentsdropped").hide();
		},250);
		});
	
		jQuery(".departmentsdropped").mouseenter(function(){
			clearTimeout(thetimeout);
		});
		jQuery(".departmentsdropped").mouseleave(function(){
		jQuery(".departmentsdropped").hide();
		});
		
		jQuery(".closedepartments").click(function(){
		jQuery(".departmentsdropped").hide();
		});
		
		
		//carousel
		if(jQuery('#mycarousel').length >0)
		{
			jQuery('#mycarousel').jcarousel({
			
			});
		}
		
		//accordion
		if(jQuery("#accordion").length >0)
		{
			jQuery("#accordion").accordion({ header: "h4", autoHeight: false,  collapsible:true });
		}


		
		
		
		});