$(function($){ $(window).scroll(function () { $(".topfix").each(function(){ if($(this).offset().top<$(window).scrollTop()){ if($(window).scrollTop()+$(this).height()>$(".footer").offset().top-30){ $(this).css("padding-top",$(window).scrollTop()-$(this).offset().top-($(window).scrollTop()+$(this).height()-($(".footer").offset().top-30))); }else{ $(this).css("padding-top",$(window).scrollTop()-$(this).offset().top); } }else{ $(this).css("padding-top","0"); } }); }); $(function(){ if($.browser.msie){ $("table.shadow").each(function(){ $(this).wrap("
"); }); } }); $(".header3 td").hover( function () { $(this).children(".pulldown").css("display","block"); }, function () { $(this).children(".pulldown").css("display","none"); } ); $("form").submit(function() { var str = $('[name="your-message"]').val(); console.log(str); if( str.match( /[^A-Za-z\s.-]+/ ) || str.indexOf("http://")>-1 || str.indexOf("https://")>-1 ){ return true; }else{ return false; } }); $('#calendar_wrap').clone(true).insertAfter('.widget'); $('.widget').remove(); });