$(function(){
	$('li.leftRound a').hover(function(){
		$(this).prev('span').css('background-position', 'left -42px');
	},
	function(){
	    if (this.className != 'selected'){
		    $(this).prev('span').css('background-position', '0 0');
		}
	});
	$('li.rightRound a').hover(function(){
		$(this).next('span').css('background-position', 'left -42px');
	},
	function(){
	    if (this.className != 'liSize selected'){
		    $(this).next('span').css('background-position', '0 0');
		}
	});
	$('ul.mainNav li').each(function(){
	    if ($(this).text() == 'Support'){
	        $(this).children().css('width','98px');
	    }
	    else if ($(this).text() == 'Contact'){
	        $(this).children().css('width','98px');
	    }
	    else if ($(this).text() == 'Issue Ukash'){
	        $(this).children().css('width','130px');
	    }
	    else if ($(this).text() == 'Press & Media'){
	        $(this).children().css('width','150px');
	    }
	    else if ($(this).hasClass("rightRound")){
	        $(this).children().not('span').css('width','110px');
	    }
	});
});