jQuery.noConflict();
jQuery(document).ready(function($) {

	$("#homeSlider").loopedSlider({autoStart: 5000,slidespeed: 1000,fadespeed: 300,containerClick: false});

	$("#nav ul ul ").hide();

	$("#nav li").hover(function(){
		$(this).siblings().find('ul').stop(true,true).animate({height:'hide',opacity:'hide'},'fast')
		$(this).find('ul').stop(true,true).animate({height:'show',opacity:'show'},'fast');
	},function(){
		$(this).find('ul').stop(true,true).fadeTo(1000, 1).animate({height:'hide',opacity:'hide'},'fast');
	});

});