/*  ----   IE 6 - Bug   ----  */
if(document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule){
	document.styleSheets[0].addRule('*', 'behavior: url(iepngfix.htc)');
}


$(document).ready( function(){
	
	$("li span").mouseover( function(){
		if($(this).css("margin-top")=="10px"){
			$(this).animate({ marginTop: '0px' }, 210);
		}
	});
	$("li span").mouseout( function(){
		$(this).animate({ marginTop: '10px' }, 310);
	});
	$("li a").focus( function(){
		$(this).children().animate({ marginTop: '0px' }, 280);
	});
	$("li a").blur( function(){
		$(this).children().animate({ marginTop: '10px' }, 280);
	});
	
	/*
	$("li span").hover( 
		function(){
			$(this).animate({ marginTop: '0px' }, 410);
		},
		function(){
			$(this).animate({ marginTop: '10px' }, 410);
		}
	);
	*/
	
});