
$(function() {
	$('.language ul li ul').hide();
	$('#startOver').hide();
	$('#bannerGreenOver').hide();
});

// shows and hides start button

 $(document).ready(function() {
 $('#start').mouseover(function(event) {
 $('#start').hide();
 $('#startOver').show();
  });
});

$(document).ready(function() {
 $('#startOver').mouseout(function(event) {
 $('#start').show();
 $('#startOver').hide();
  });
});


 $(document).ready(function() {
 $('#bannerGreen').mouseover(function(event) {
 $('#bannerGreen').hide();
 $('#banneGreenrOver').show();
  });
});

$(document).ready(function() {
 $('#bannerGreenOver').mouseout(function(event) {
 $('#bannerGreen').show();
 $('#bannerGreenOver').hide();
  });
});



// shows and hides language drop down

$(document).ready(function() {
 $('.language ul li.select').bind ({
    mouseover: function(event) {
   $('.language ul li ul').show ()
   	},
	mouseout: function(event) {
   $('.language ul li ul').stop(true, true).hide ()
     }
  }); 
});


// Sets current class for language drop down

$(document).ready(function() {
if (location.href.substring(42) == 'US_EN')
  $('#en').addClass('currentChoice')
  
});

$(document).ready(function() {
if (location.href.substring(42) == 'US_ES')
  $('#es').addClass('currentChoice')
  
});

$(document).ready(function() {
if (location.href.substring(42) == 'US_KO')
  $('#ko').addClass('currentChoice')
  
});


$(document).ready(function () {
	 $("#services a, #servicesTwo a, #servicesEnergy a").hover( // hover function for Products on Home page
			function () {
					$(this).find(".over").show(); 
					},
 	 function () {
					$(this).find(".over").hide(); 
					}
		 );
});

