$j(function () {


	$j('ul.left_tree li').css('cursor', 'pointer')
	.click(function() {
	   window.location = $j('a', this).attr('href');
	});


	$j("ul.left_tree li").hover(
	  function () {
	    $j(this).addClass("hover");
	    $j("ul", this).css("display", "block");
	  }, 
	  function () {
	    $j(this).removeClass("hover");
	    $j("ul", this).css("display", "none");
	  }
	);


	$j('.block-title strong').before('<div style="height:8px"></div>');


	$j('.clickable').css('cursor', 'pointer')
	.click(function() {
	window.location = $j('a', this).attr('href');
	});


	$j(".products-grid li").hover(
	  function () {

	    $j(".more-info", this).css("display", "block");
	    $j(".add-to-cart", this).css("display", "block");
	  }, 
	  function () {
	    $j(".more-info", this).css("display", "none");
	    $j(".add-to-cart", this).css("display", "none");
	  }
	);


});
