$(document).ready(function() {
$("div#categories_block_left ul li, div#manufacturers_block_left ul li").hover(
function () {
$(this).stop().animate({ paddingLeft: "5px" }, 100);
}, 
function () {
$(this).stop().animate({ paddingLeft: "0px" });
}
);
});


	$(document).ready(function () {
		// transition effect
		style = 'easeOutQuart';
		// if the mouse hover the image
		$('.hft').hover(
			function() {
				//display heading and caption
				$(this).children('div:last').stop(false,true).animate({bottom:6},{duration:500, easing: style});
			},
			function() {
				//hide heading and caption
				$(this).children('div:last').stop(false,true).animate({bottom:-112},{duration:500, easing: style});
			}
		);
	});
