$(document).ready(function() 
{
	$("#nav li").each(function()
	{
		if($(this).hasClass('selected'))
		{
			//debugger();
			$(this).css('background-position-y', '-34px');
		}
	})		
});
