
$(document).ready(function() {

	$(".dropdown > li > ul").hide('fast');
	$(".mainmenu > li > ul").hide('fast');
	
$(".dropdown li").hover(
	function(){
	$("ul", this).animate({height: 'toggle'},'fast');
});

$(".dropitem li").hover(
	function(){
	$(this).animate({backgroundColor: '#4E1402'},'fast');
});


/*$("h4").mouseout(function(){
	$("h4 + ul").animate({height: toggle},'fast');
});*/
	/*$(".swaps").mouseover(function(){
		var temp = this.src.replace(/thumbs/,'full')
		$("#img1").attr("src", temp);
	});
	
	$(".jumps").mouseover(function(){
		orimage = $("#img1").attr("src");
		var temp = this.src.replace(/thumbs/,'full')
		$("#img1").attr("src", temp);
	});
	$(".jumps").mouseout(function(){
		$("#img1").attr("src", orimage);
	});*/
	
	/*$(".dropdown").mouseover({function(){
	   $(".dropdown").hide();
       
	});
	$(".dropdown").mouseout({function(){
	   $(".dropdown").show();
       
	});*/
	
/*	$("#accordion").accordion({
		collapsible: true,
		autoHeight: false,
		navigation: true});*/
});
