jQuery(document).ready( function(){
	jQuery(".mainMenuItem").hover(
      function () {
        jQuery(this).children('ul').fadeIn();
      }, 
      function () {
        jQuery(this).children('ul').fadeOut();
      }
    );
    
    jQuery('.openLink').click(function() {
    	var target = '.content' + jQuery(this).attr('id');
    	jQuery(target).slideToggle();
    	jQuery(this).toggleClass('down');
    	return false;
    });
    
    jQuery('#SearchForm_SearchForm_Search').focus(function() {
    	jQuery(this).val('');
    });
    
    jQuery('.videoLink a').flowplayer('/mysite/js/flowplayer/flowplayer-3.1.5.swf').click(function() {
    	jQuery(this).height(408).width(528);
    	var targetOffset = jQuery(this).offset().top - 20;
		jQuery('html,body').animate({scrollTop: targetOffset}, 1000);
    });
    
    jQuery('#MemberLoginForm_LoginForm #Email label').html('Login');
    
    jQuery('#PhotoGallery div.photoContainer a.photoPreview').fancybox({ 
    	'hideOnContentClick': true,
		'titlePosition': 'inside'
    });
    
});