jQuery(document).ready(function($){

	$("a[rel^='prettyPhoto']").prettyPhoto({showTitle: true, theme: 'dark_rounded'});

//Downloads Table
	$(".downloads-container tr:not(.no-hover)").bind("mouseenter",function(){
			$(this).addClass("hovered");
			$(this).find("td.download-now a").addClass("hovered");
		}).bind("mouseleave",function(){
			$(this).removeClass("hovered");
			$(this).find("td.download-now a").removeClass("hovered");
	});
	$(".downloads-container tr:not(.no-hover)").click(function(){
		window.location = $(this).find("td.download-now a").attr("href");
	});
//END Downloads Table 
})