// JavaScript Document
$(document).ready(function() {
	
	$('#ThermosLogo').mouseover( function() {
          //$(this).fadeOut(1000);
          $(this).attr({'src':'imgs/thermos2.png'});
          $(this).fadeIn(500);
        });
	$('#ThermosLogo').mouseout( function() {
          //$(this).fadeOut(1000);
          $(this).attr({'src':'imgs/thermos.png'});
          if (this.complete) $(this).fadeIn(500);
        });
	
	$('#overlay-background').css({
		height: $(document).height(),
		width: $(document).width()
	});

	//WHAT MATTERS TO US SITEMAP MODAL
	$('#whatmatterstousSitemap').click(function() {
		$('#overlay-background').css({
			'display': 'block',
			'opacity': 0
		}).animate({ 'opacity': 0.7 });
		$('#overlaySWF').fadeIn('normal');
		return false;
		
	});
	
	//WHAT MATTERS TO US MODAL
	$('#whatmatterstous').click(function() {
		$('#overlay-background').css({
			'display': 'block',
			'opacity': 0
		}).animate({ 'opacity': 0.7 });
		$('#overlaySWF').fadeIn('normal');
		return false;
		
	});
	
	//THERMOS TECHNOLOGY MODAL
	$('#thermostech').click(function() {
		$('#overlay-background').css({
			'display': 'block',
			'opacity': 0
		}).animate({ 'opacity': 0.7 });
		$('#overlaySWF-TECH').fadeIn('normal');
		return false;
	});
	
	//BPA MODAL
	$('#bpafree').click(function() {
		$('#overlay-background').css({
			'display': 'block',
			'opacity': 0
		}).animate({ 'opacity': 0.7 });
		$('#overlayBPA').fadeIn('normal');
		return false;
	});
	
	$('#SWFoverlay-close, #SWFoverlay-close2, #overlay-background').click(function() {
		$('#overlay-background').animate({
			'opacity': 0
		}, 'fast', function() {
			$('#overlay-background').css('display','none');
		});
		$('#overlaySWF').fadeOut('fast');
		$('#overlaySWF-TECH').fadeOut('fast');
		$('#overlayBPA').fadeOut('fast');
		return false;
	});
	
});
