$(document).ready(function(){
/* EXAMPLE SYNTAX
	 $("a").click(function(){
	   alert("Example");
	 });
	
*/
	$(".togglerContent").hide();
	$("#homeBoxContentInner").html($("#greenContent").html());
	$(".togglerLink").mouseover(function(){
		$("#homeBoxContentInner").html($("#"+$(this).attr("id")+"Content").html());
		$("#homeBoxContent").removeClass("pink").removeClass("blue").removeClass("yellow").removeClass("green");
		$("#homeBoxContent").addClass($(this).attr("id"));
		return false;
	});

});