$(function(){
	$('#cssdropdown > li').mouseover(function(){
			$(this).children('a').css('backgroundPosition', '-125px 0px');
			$(this).children('ul').css('backgroundPosition', '-125px 0px');
		});
	$('#cssdropdown > li').mouseout(function(){
		$(this).children('a').css('backgroundPosition', '0px 0px');
			$(this).children('ul').css('backgroundPosition', '0px 0px');
		});
});
