$(document).ready(function(){
	jQuery.each(jQuery.browser, function(i, val) {
		if(i=="msie" && jQuery.browser.version.substr(0,1)=="6")
			DD_belatedPNG.fix('#header h1 a, .navigation, .latest-posts, a.more, #download-now');
	});

	$('#header .navigation li a').hover(
	function()
	{
		x = ''+$(this).position().left-3;
		x = '-'+x;
		$(this).css('background-image', 'url(\'images/navigation-hover.png\')');
		$(this).css('background-position', x+'px 0px');
	},
	function()
	{
		if ( ! $($(this).parent()).hasClass('last') )
			$(this).css('background', 'url(\'images/navigation-divider.png\') right center no-repeat');
		else
			$(this).css('background', 'transparent');
	}
	);
});