// Home Widgets

// when the DOM is ready...
$(document).ready(function () {

	$(".hpWidgets a").mouseover(function(){
		
		var myGameName = $(this).children().attr("alt");
		var myWidgetName = $(this).attr("title");
		
		$("h6.gameName").html(myGameName);
		$("p.widgetName").html(myWidgetName);
		
		$(".hpWidgets a").css('opacity', 0.5);
		$(this).css('opacity', 1.0);
		
	});
	
	$(".hpWidgetsContainer").mouseleave(function(){				
		
		$("h6.gameName").html(localisedRolloverCTA);
		$("p.widgetName").html(localisedFeatureCTA);
		
		
		$(".hpWidgets a").css('opacity', 1.0);
		
	});
	
});
