//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
		
	//Home out event!
	$(".HomeHoverBlock").mouseover(function(){
	    var objTitle = $(this).attr("title");
	    
	    $(".LatestNews").hide();
	    $("#HomeBigBlockStandard").hide();
	    
	    $("#" + objTitle + "RightBlock").show();
	    $("#HomeBigBlock" + objTitle).show();
	});
	
	$(".HomeHoverBlock").mouseout(function(){
	    var objTitle = $(this).attr("title");
	    
	    $("#" + objTitle + "RightBlock").hide();
	    $("#HomeBigBlock" + objTitle).hide();
	    
	    $(".LatestNews").show();
	    $("#HomeBigBlockStandard").show();
	    
	});
	
});
