
function project() {
	
	$('.project').cycle({ fx : 'fade', sync : 0 });
	
}

function links() {
	
	$('#info-left .links .core ul li a')
	.css( {backgroundPosition: "0px 0px"} )
	.mouseenter(function(){
		$(this).stop()
		.animate({ backgroundPosition : '-12px 0px' }, 125)
		.animate({ backgroundPosition : '-12px -40px' }, 5)
		.animate({ backgroundPosition : '0px -40px' }, 125);
	}).mouseleave(function(){
		$(this).stop()
		.animate({ backgroundPosition : '-12px -40px' }, 125)
		.animate({ backgroundPosition : '-12px 0px' }, 5)
		.animate({ backgroundPosition : '0px 00px' }, 125);
	});
	
	$('#info-left .links .core ul li a.active').unbind('mouseenter').unbind('mouseleave').css({ backgroundPosition: "0px -40px" });
	
}

function quick() {
	
	$('input.submit').hover( function() {
		
		$(this).css('top', '-27px');
		
	}, function() {
		
		$(this).css('top', '0px');
		
	});
	
} 

$(document).ready(function(){

	project();
	
	links();
	
	quick();
	
});
