$(document).ready( function() {
	$('a[@rel]').overlay({ 
 
		top: 80,
		
		speed: 900,
		onBeforeLoad: function(content, link) { 
			$(this).expose();
			content.find('div.content').load(link.attr('href')); 
			//$("#splayer").css("display","none");
			$("#hpmovie object").hide();
			$("#movieplayer object").hide();
			$("select").hide();
		},
		
		onClose: function () {
			$.unexpose();
			//$("#splayer").css("display","block");
			$("#hpmovie object").show();
			$("#movieplayer object").show();
			$("select").show();
		}
	});
	$("#addinfo img").hover(function() {
		$(this).attr("src", $(this).attr("src").split("_off.").join("_on."));
	}, function() {
		$(this).attr("src", $(this).attr("src").split("_on.").join("_off."));
	});
	$("#usersname img").hover(function() {
		$(this).attr("src", $(this).attr("src").split("_off.").join("_on."));
	}, function() {
		$(this).attr("src", $(this).attr("src").split("_on.").join("_off."));
	});

});
