$(document).ready(function(){
	if (!$.support.transition) {
		$("ul.categories-list li").hover(
			function() {$(this).find("img").stop().animate({opacity:1.0},  500);},
			function() {$(this).find("img").stop().animate({opacity:0.85}, 500);}
						);


		$("ul.categories-list li").hover(
			function() {$(this).stop().animate({borderColor: "#C0C0F0", backgroundColor: "#E0E0F0"},  500);},
			function() {$(this).stop().animate({borderColor: "#FFFFFF", backgroundColor: "#FFFFFF"}, 500);}
						);



		$("ul.products-list.gallery h3 a").hover(
			function() {$(this).stop().animate({color: "#25b", backgroundColor: "#cde"},  500);},
			function() {$(this).stop().animate({color: "#36c", backgroundColor: "#def"}, 500);}
						);

		

		$("ul.products-list.gallery li").hover(
			function() {$(this).find(":button").stop().animate({opacity:1.0},  500);},
			function() {$(this).find(":button").stop().animate({opacity:0}, 500);}
						);

		}


	$("ul.categories-list li").click(
		//function() {$(this).stop().effect('bounce',{}, 1000);}
		  function() {$(this).stop().effect('transfer',{to:'body', className:'ui-effects-transfer'}, 500);}
						);
		
	});


