$(function(){
	$(".video-preview a").click(function(){
		var link = $(this).attr("href");
		$("#player_container").html("<img src='/images/ajax_loader.gif' width='32' height='32' style='position:absolute; left:150px; top:130px;' />");
		//alert(link);
		$.ajax({
			  url: link,
			  cache: false,
			  success: function(msg){
			    //alert(msg);
			    $("#player_container").html(msg);
			  }
			});

		return false;
	});
	

	
	$("#press_login").submit(function(){
		var params;
		$(this).find("input").each(function(){
			params += "&"+$(this).attr("name")+"="+$(this).val();
		});
		$(this).parents(".main-content").hide();
		$(this).parents(".main-content").next().load("press_login.php?mod=auth"+params);
		$(this).parents(".main-content").next().show();
		return false;
	});
});

