$(document).ready(function(){

	$("#mediathequeFiles .file, .attsBox .file").live("mouseover", function() {
		$(this).addClass("highlightMe");
	});
	
	$("#mediathequeFiles .file, .attsBox .file").live("mouseout", function() {
		$(this).removeClass("highlightMe");
	});
	
	$(window).load(function () {
		$imageThumb = $(".filePageImage .thumbCell img");
		if ($imageThumb.width() > 524) {
			$imageThumb.css("width","524px");
			$imageThumb.attr("width","524");
		}
	});
	
	$("#mediathequeFiles .acceptOff").toggle(
		function(){
			$(this).addClass("acceptOn");
			$(this).removeClass("acceptPing");
			$(".download").hide();
			$(".downloadTrue").show();
		},
		function(){
			$(this).removeClass("acceptOn");
			$(".download").show();
			$(".downloadTrue").hide();
		}
	);
	
	$(".filePageImage .download").click(function(){
		$(".acceptOff").addClass("acceptPing");
	})
	
});
