$(document).ready(function(){
    
    
    
    $('.sf-menu').superfish({
		delay:       200,                            // one second delay on mouseout 
		speed:       450,                          // faster animation speed 
		autoArrows:  true,                           // disable generation of arrow mark-up 
		dropShadows: true                            // disable drop shadows 
	}); 
	
	//Superfish border fix
   	jQuery.each($('.sf-menu').children('li'),function(){
		$(this).find('li:first-child').css('border-width','1px 1px 0px 1px')
		.siblings('li:last-child').css('border-width','0px 1px 1px 1px');
   	});
   
     //Hover effect for highlight bar IE6
    $('.fade_effect').hover(
    	function(){
    		$(this).animate({
    			opacity: 0.7
    		},100);
    	},
    	function(){
    		$(this).animate({
    			opacity: 1
    		},400);
    	}
    );   


	// Video Thumb hover for thumbnails IE6
	   
   $('.video_thumb dd').hover(
    	function(){
    		$(this).css('background','#F5FDE3 url(../css/img/resourceHover.gif) no-repeat;');
    	},
    	function(){
			$(this).css('background','#fff;');
    	}
    );   
    
    
    // Submit all links / buttons
    $('.submit-form').click(function(){
    	$('form').submit();
    	$(this).attr("disabled", "true");
    });
    
});