

/* FUNCTIONS */

$(document).ready(function(){
 
	DataList();

});




function DataList() {
	$("#dataList .Items").find("a").css("position", "");
	$("#dataList .Items").hover(function () {
   		$(this)
			.attr("title",$(this).find("h3").text())
			.addClass("Hover");		
    	}, function (){
			$(this).removeClass("Hover");
		}
	);
	$("#dataList .Items").click(function () { 
		window.location=$(this).find("a").attr("href");
    });

}




