// JavaScript Document

/**sub-product show/hide**/
		
$(document).ready(function() {

$.preloadImages("/sites/sailtime.com/themes/SailTime/images/main-screen.jpg",
"/sites/sailtime.com/themes/SailTime/images/sail.png", "/sites/sailtime.com/themes/SailTime/images/sail-active.png", "/sites/sailtime.com/themes/SailTime/images/power-active.png", "/sites/sailtime.com/themes/SailTime/images/screen-bkg.png");
		
		//$('#sail-screen, #power-screen, #watch-up, #relax-up, #explore-up, #learn-up').hide();
		$('#watch-up, #au-watch-up, #relax-up, #uk-relax-up, #explore-up, #au-explore-up, #learn-up').hide();
		$('#watch').hover(function(){
		$('#watch-up, #au-watch-up').fadeIn('fast')
   		}, function() {
		$('#watch-up, #au-watch-up').fadeOut('fast');
    });
		$('#relax').hover(function(){
		$('#relax-up, #uk-relax-up').fadeIn('fast')
   		}, function() {
		$('#relax-up, #uk-relax-up').fadeOut('fast');
    });
		$('#explore').hover(function(){
		$('#explore-up, #au-explore-up').fadeIn('fast')
   		}, function() {
		$('#explore-up, #au-explore-up').fadeOut('fast');
    });
		$('#learn').hover(function(){
		$('#learn-up').fadeIn('fast')
   		}, function() {
		$('#learn-up').fadeOut('fast');
    });


/**main sail/power screens
		$('#sail').hover(function(){
		$('#sail-screen').show()
   		}, function() {
		$('#sail-screen').fadeOut('5000');
    });

		$('#power-nav').hover(function(){
		$('#power-screen').show()
   		}, function() {
		$('#power-screen').fadeOut('5000');
    });


/**map interface   
    $('#find').hover(function(){
		$('#map').show()
    });
	$('#map').click(function(){
		$(this).fadeOut('5000');
    });
**/    
    
});


