$(document).ready( function() {	

// --------------------------------------------------------------------------------------
// IE6 PNG Fix
// --------------------------------------------------------------------------------------
	// Not really a jquery element, but thought it would be best to place it here
	if ( document.all && /MSIE (5\.5|6)/.test(navigator.userAgent) &&
	     document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule)
	{
		document.styleSheets[0].addRule('*', 'behavior: url(/en/styles/iepngfix.htc)');
		// Feel free to add rules for specific elements only, as above.
		// You have to call this once for each selector, like so:
		//document.styleSheets[0].addRule('img', 'behavior: url(iepngfix.htc)');
		//document.styleSheets[0].addRule('div', 'behavior: url(iepngfix.htc)');
	}

	// Suppress errors
	function silentErrorHandler() {return true;}
	window.onerror=silentErrorHandler;

// --------------------------------------------------------------------------------------
// IE6 Hover Fix
// --------------------------------------------------------------------------------------


// --------------------------------------------------------------------------------------
// Browser Specific Detection / Style Fixing
// --------------------------------------------------------------------------------------
	// Safari / Chrome
	if ( $.browser.webkit || $.browser.safari )
	{
		// Removed for the new channel portal stuff, but kept here just for reference
		//$("#page-case-study #section-pages-viewed .content .item .image img").css("top", "8px");
	}
// --------------------------------------------------------------------------------------
// Main Nav Dropdown	
// --------------------------------------------------------------------------------------

// --------------------------------------------------------------------------------------
// Form Enabler (Turns normal fields into forms when an "edit" button/link is clicked)	
// --------------------------------------------------------------------------------------


// --------------------------------------------------------------------------------------
// Show / Hide	
// --------------------------------------------------------------------------------------
	
	
// --------------------------------------------------------------------------------------
// Tabs	
// --------------------------------------------------------------------------------------

// --------------------------------------------------------------------------------------
// Dialog (Lightbox like effect)
// --------------------------------------------------------------------------------------
	

// --------------------------------------------------------------------------------------
// Date Pickers
// --------------------------------------------------------------------------------------





}); // End document.ready()

