
function setEqualHeight(columns)
 {
 var tallestcolumn = 0;
 columns.each(
 function()
	 {
		 currentHeight = $(this).height();
		 if(currentHeight > tallestcolumn)
		 {
			tallestcolumn  = currentHeight;
		 }
	 }
 );
 columns.height(tallestcolumn);
 }

 $(document).ready(function(){

	$('.product_bottom_text span span, .product_bottom_text span a, .product_name, .menu > ul > li > ul > li> a').textShadow();
	
	 $(function() {
        $('.gallery a').lightBox();
    });
	
	$('.menu > ul > li').hover( function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	$('.menu > ul > li:last').addClass('last');

});

 
jQuery(window).load(function() {

	var height = $(window).height() - 123 - 19 + 10;
	if($('.content').height() < height){
		$('.content').css('height', height);
	}
	
});

jQuery(window).resize(function() {

	var height = $(window).height() - 123 - 19 + 10;
	if($('.content').height() < height){
		$('.content').css('height', height);
	}

});
