
 $(document).ready(function() {

		$('.top_li').hover(function (event) {		
		  				  
			$(this).children().show();							  
		
		}, function() {
				   
			$('.second_ul').hide();	
												
		});
				
})


 $(function(){
   
      $('div.btn').hover(function() {
   		
		$(this).css({'cursor':'pointer','border-left':'1px solid #173553','border-top':'1px solid #173553', 'border-right':'1px solid #FFFFFF','border-bottom':'1px solid #FFFFFF','background':'#3c8bdc', 'color': '#173553'})
		
		//alert($(this).css('background'))
   
      }, function() {
   
       $(this).css({'border-left':'1px solid white','border-top':'1px solid white','border-right':'1px solid #173553','border-bottom':'1px solid #173553','background':'#3880ca', 'color': '#FFFFFF'})
   
      });

 });
 

 $(function(){
   
      $('div.btn_2').hover(function() {
   		
		$(this).css({'cursor':'pointer','border-left':'1px solid #173553','border-top':'1px solid #173553', 'border-right':'1px solid #FFFFFF','border-bottom':'1px solid #FFFFFF','background':'#3c8bdc','color':'#173553'})
		
		//alert($(this).css('background'))
		
   
      }, function() {
   
       $(this).css({'border-left':'1px solid white','border-top':'1px solid white','border-right':'1px solid #173553','border-bottom':'1px solid #173553','background':'#2c67a2','color':'#FFFFFF'})
   
      });

 });



