// Javascript functions

// Set the Rules for the PNG Files and Backgrounds
function addPNGRule() {
	if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule) {
		document.styleSheets[0].addRule('.png', 'behavior: url(c/iepngfix.htc)');
	}
}

// Initialization Function
function init() {
	addPNGRule();
	
	// IE6 Bugs
	if (window.ie6) {
		$('header').setStyles({
			position: 'relative',
			left: '14px'
		});
	}
}

// Set DOMReady Events
window.addEvent('domready', init);
