jQuery(document).ready(function(){ jQuery('#menu img').mouseover(function() { jQuery(this).attr('src',jQuery(this).attr('src').replace('.jpg','-hover.jpg')); }); jQuery('#menu img').mouseout(function() { jQuery(this).attr('src',jQuery(this).attr('src').replace('-hover.jpg','.jpg')); }); jQuery('.optin .required, .optin-large .required').toggleVal(); jQuery('.refer-friend').validate(); jQuery('.field').mouseover(function(){jQuery(this).children('label').fadeOut();}); if ( jQuery("#videos").length == 0 ) { jQuery("#videos-link").hide(); jQuery("#no-videos").hide(); } if ( jQuery("#photos").length == 0 ) { jQuery("#photos-link").hide(); } if ( jQuery("#faqs").length == 0 ) { jQuery("#faqs-link").hide(); } if ( jQuery("#prep").length == 0 ) { jQuery("#prep-link").hide(); } jQuery('.ehow-vids a.youtube').click(function() { jQuery.fancybox({ 'padding' : 0, 'centerOnScroll' : true, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'title' : this.title, 'width' : 680, 'height' : 495, 'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 'type' : 'swf', 'swf' : { 'wmode' : 'transparent', 'allowfullscreen' : 'true' } }); return false; }); jQuery('.ehow-vids a.ehow').fancybox({ 'scrolling' : 'no', 'titleShow' : false, 'width' : 404, 'height' : 352 }); });