$(document).ready(function(){

	$("#user").inputLabel(false,{color:"#000"});
	$("#pass").inputLabel(false,{color:"#000"});

	$(".work li:nth-child(3n)").addClass('third');
	
	$('#login-hd').hoverIntent(
     function() { // over
        $('#login-tip').fadeIn();
     },
     function() { // out
        $('#login-tip').fadeOut();
     }
	);
});

