$(document).ready(function(){


 $(".top_btn").mouseover(function(){
 		$(this).find('img').show();
   });
   
   $(".top_btn").mouseout(function(){
   	$(this).find('img').hide();
   });
  
  $('.services_btn').mouseover(function() {
    $('.child_btn').hide();
    $('.services_drop').show();
    
  });   
  
$('.products_btn').mouseover(function() {
    $('.child_btn').hide();
    $('.products_drop').show();
    
  }); 
  
  
$('.custom_sol_btn').mouseover(function() {
    $('.child_btn').hide();
    $('.custom_sol_drop').show();
    
  }); 
  
 $('.locations_btn').mouseover(function() {
    $('.child_btn').hide();
    $('.locations_drop').show();
    
  }); 


$('.main_content, .hide_all').mouseover(function() {
    $('.child_btn').hide();
    
  }); 
  
    





$(".login_btn").mouseover(function(){
    	$('.login_btn img').fadeIn(500);

   });
 

   
    $(".login_btn img,").mouseout(function(){
    	$('.login_btn img').fadeOut(500);
   });

   
   
   
   $(".cust_login_sm").mouseover(function(){
    	$('.cust_login_sm img').fadeIn(500);

   });
 

   
    $(".cust_login_sm img,").mouseout(function(){
    	$('.cust_login_sm img').fadeOut(500);
   });

   
   
   
   
   $(".home_query,.home_cta,.header").mouseover(function(){
    	$('.login_btn img .cust_login_sm img').fadeOut(500);
   });


$('.request_generic').click(
		function() {
		if (this.value == this.defaultValue) {
		this.value = '';
		}
	});
$('.request_generic').blur(
		function() {
		if (this.value == '') {
		this.value = this.defaultValue;
		}
	});
  
	 
 });
 

