// JavaScript Document

var site = function() {
	/* Initializes class variables */
	
};

site.prototype = {
	
	mouseEnterNav : function(id){
			
			$("#" + id).animate({
				color:"black"
			});
	},
	
	swapImage : function(imageID){
		var newImageIMG = this.newIMG();
		
		$(newImageIMG).attr("src","images/" + imageID + ".jpg" );
		
		
		
		$('#imageWrapperInner').fadeOut("50",function(){
			$("#imageWrapperInner").html(newImageIMG);
			$('#imageWrapperInner').fadeIn("50");
		});
		
	},
	
	
	newIMG : function(){
		return document.createElement("img");
	},
	
	
	newAnchor : function(){
		return document.createElement("a");
	}
	
};

