$(document).ready( function(){

        $('#nav > li').hoverIntent(
            function(){
                $(this).addClass('over');
                $('ul',this).fadeIn('fast');
            },
            function (){
                $(this).removeClass('over');
                $('ul',this).fadeOut('fast');
            }
        ); 
        
        $('#search').bind('click',function(e) {
        	$('#search').val('');
        });
        
        $('#topnav_home_li').bind('mouseover', function(e) {
        	$('#topnav_home').attr('src','/img/topnav_home_reverse.png');
        });        
        $('#topnav_home_li').bind('mouseout', function(e) {
      	 	$('#topnav_home').attr('src','/img/topnav_home.png');
        });
        
        $('#topnav_aboutus_li').bind('mouseover', function(e) {
        	$('#topnav_aboutus').attr('src','/img/topnav_aboutus_reverse.png');
        });        
        $('#topnav_aboutus_li').bind('mouseout', function(e) {
        	$('#topnav_aboutus').attr('src','/img/topnav_aboutus.png');
        });
        
        $('#topnav_shopnow_li').bind('mouseover', function(e) {
        	$('#topnav_shopnow').attr('src','/img/topnav_shopnow_reverse.png');
        });        
        $('#topnav_shopnow_li').bind('mouseout', function(e) {
        	$('#topnav_shopnow').attr('src','/img/topnav_shopnow.png');
        });
        
        $('#topnav_cancercolors_li').bind('mouseover', function(e) {
        	$('#topnav_cancercolors').attr('src','/img/topnav_cancercolors_reverse.png');
        });        
        $('#topnav_cancercolors_li').bind('mouseout', function(e) {
        	$('#topnav_cancercolors').attr('src','/img/topnav_cancercolors.png');
        });
        
        $('#topnav_cancerbuzz_li').bind('mouseover', function(e) {
        	$('#topnav_cancerbuzz').attr('src','/img/topnav_cancerbuzz_reverse.png');
        });        
        $('#topnav_cancerbuzz_li').bind('mouseout', function(e) {
        	$('#topnav_cancerbuzz').attr('src','/img/topnav_cancerbuzz.png');
        });
        
        $('#topnav_resources_li').bind('mouseover', function(e) {
        	$('#topnav_resources').attr('src','/img/topnav_resources_reverse.png');
        });        
        $('#topnav_resources_li').bind('mouseout', function(e) {
        	$('#topnav_resources').attr('src','/img/topnav_resources.png');
        });
});
