$(document).ready(function() {

	// Swap Header
	var htmlHover = $("#hover-navigation").html();
	var htmlNav = $("#navigation").html();
	$("#navigation").hover(function(){$(this).html(htmlHover);},function(){$(this).html(htmlNav);});
	
	// Image Hover 
	$(".project_flip").hover(
		function () {
			$(this).children("img").hide();
		}, 
		function () {
			$(this).children("img").show();
		}
	);

});

//////////////////////////////////////////////////////////////////////
