$(function(){
	init=function(){
		$("ul.jd_menu").jdMenu();
		$(".thumbs").fadeTo("fast", 0.5);
		$(".thumbs").hover(
			function(){
				$(this).fadeTo("fast", 1);
			},
			function(){
				$(this).fadeTo("slow", 0.5);
			}
		);
	}
});