$(document).ready(function(){ //alert('document ready.');
	//hover text --------
	$("#hoverTxt_studios").hide(); 
	$("#hoverTxt_training").hide(); 
	$("#hoverTxt_commit").hide(); 
	
	$("#studios").hover( function () { //alert("studios hover");
			$("#hoverTxt_studios").show(); 
			$("#hoverTxt_training").hide(); 
			$("#hoverTxt_commit").hide(); 
	}, function () {
		$("#hoverTxt_studios").hide();
	});	
	$("#training").hover( function () { //alert("training hover");
			$("#hoverTxt_studios").hide(); 
			$("#hoverTxt_training").show(); 
			$("#hoverTxt_commit").hide(); 
	}, function () {
		$("#hoverTxt_training").hide();
	});
	$("#commit").hover( function () {
			$("#hoverTxt_studios").hide(); 
			$("#hoverTxt_training").hide(); 
			$("#hoverTxt_commit").show(); 
	}, function () {
		$("#hoverTxt_commit").hide();
	}); 
	
	//preload --------
	function preload(arrayOfImages) {
		$(arrayOfImages).each(function(){
			(new Image()).src = this; //$('<img/>')[0].src = this;
		});
	}
	preload([
		'_images/studios_over.jpg',
		'_images/training_over.jpg',
		'_images/commit_over.jpg'
	]);

}); 
