/* equal height columns */
function setEqualHeight(columns) {var tallestcolumn = 0;columns.each(function(){currentHeight = $(this).height();if(currentHeight > tallestcolumn) {tallestcolumn  = currentHeight;}});columns.height(tallestcolumn);}
$(function() {setTimeout('setEqualHeight($(".footer  > .box3rd"))',1500);});
/* img reveal */
$(function() {$('ul.hover_block li').hover(function(){$(this).find('img').animate({top:'200px'},{queue:false,duration:500});},function(){$(this).find('img').animate({top:'0px'},{queue:false,duration:500});});});

