/**
 * Anything that applies to all webpages is loaded here.
 */

//PNG Fix for IE6
if($.browser.msie && $.browser.version <= 6.0){
	//$(function(){$('.welcome_search_btn').pngFix();});
}

// initialise plugins
var load_dropdowns = function() {
	if($.browser.msie && $.browser.version <= 6.0){
		//Stupid IE 6 Sizing Issues
		$('ul.sf-menu').supersubs({ 
	        minWidth:    10,   // minimum width of sub-menus in em units 
	        maxWidth:    15,   // maximum width of sub-menus in em units 
	        extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
	                           // due to slight rounding differences and font-family 
	    }).superfish({ 
	        delay:       1000,                            // one second delay on mouseout 
	        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
	        speed:       0,                          // faster animation speed  
	        dropShadows: true                            // disable drop shadows 
	    }).find('ul').bgIframe({opacity:false});
	}else{
	    $('ul.sf-menu').supersubs({ 
	        minWidth:    10,   // minimum width of sub-menus in em units 
	        maxWidth:    27,   // maximum width of sub-menus in em units 
	        extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
	                           // due to slight rounding differences and font-family 
	    }).superfish({ 
	        delay:       1000,                            // one second delay on mouseout 
	        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
	        speed:       0,                          // faster animation speed  
	        dropShadows: true                            // disable drop shadows 
	    }).find('ul').bgIframe({opacity:false});
	    
	}
};
