// JavaScript Document
$(function(){
	var slidHeight = $('.catwalk').height();
	var imgHeight = $('#wraper>img').height();
	var h = Number(slidHeight) + Number(imgHeight) + 50;
	$('table.menu td')
		.each(function(){
					   $(this).attr('style','height:' + h+ 'px !important');
					   });
	
	
});