$(document).ready(function(){   
    $(".topnav > li")
	  .hover(function(e) {    
  		$(this).children('.subnav').show(); //Drop down the subnav 
  	  }, function(e) {
  		$(this).children('.subnav').hide();
		
		
        }).hover(function() {   
            $(this).attr("id", "hover"); //On hover over, add class "subhover"   
        }, function(){  //On Hover Out   
            $(this).removeAttr("id"); //On hover out, remove class "subhover"   
			
	  }); 
     $(".topnav > li")
	  .hover(function(e) {    
  		$(this).children('.subnavr').show(); //Drop down the subnav 
  	  }, function(e) {
  		$(this).children('.subnavr').hide();
		
		
        }).hover(function() {   
            $(this).attr("id", "hover"); //On hover over, add class "subhover"   
        }, function(){  //On Hover Out   
            $(this).removeAttr("id"); //On hover out, remove class "subhover"   
			
	  }); 
    $(".topnav > .breed")
	  .hover(function() {   
            $(this).attr("id", "bhover"); //On hover over, add class "subhover"   
        }, function(){  //On Hover Out   
            $(this).removeAttr("id"); //On hover out, remove class "subhover"   
			
	  });
    $(".topnav > .home")
	  .hover(function() {   
            $(this).attr("id", ""); //On hover over, add class "subhover"   
        }, function(){  //On Hover Out   
            $(this).removeAttr("id"); //On hover out, remove class "subhover"   
			
	  });
    $(".topnav > .homeact")
	  .hover(function() {   
            $(this).attr("id", ""); //On hover over, add class "subhover"   
        }, function(){  //On Hover Out   
            $(this).removeAttr("id"); //On hover out, remove class "subhover"   
			
	  });
    });   
