(function($) {
	$('header nav li a').mouseenter(function(e) {
		if ($(this).css('background-position-y') != '') {
			$(this).css({
				'background-position-y': '-29px'
			});
		} else {
			var curpos = $(this).css('background-position').replace(' 0px',' -29px');
			$(this).css({
				'backgroundPosition': curpos
			});
		}
	}).mouseleave(function(e) {
		if ($(this).css('background-position-y') != '') {
			$(this).css({
				'background-position-y': '0px'
			});
		} else {
			var curpos = $(this).css('background-position').replace(' -29px',' 0px');
			$(this).css({
				'backgroundPosition': curpos
			});
		}
	});
	$('.projects-navigation a').mouseenter(function() {
		$('img',this).fadeTo(200,0);
	}).mouseleave(function() {
		$('img',this).fadeTo(200,1);
	});
	$('.projects-photos nav a').click(function(e) {
		e.preventDefault();
		strsrc = $(this).attr('href');
		$(this).closest('.projects-photos').find('.photo img').attr('src',strsrc);
	});
})(jQuery);
