$("document").ready(function(){
    
	$(".video").click(function(){
		
		videoClick($(this));	
		
	});
	
	videoClick($(".video:first"))
	
	function videoClick(div)
	{
		$("#video-title").html(div.find(".video-title").html());
		$("#video-edit").html(div.find(".video-edit").html());		
		$("#video-description").html(div.find(".video-description").html());
		
		url=div.find(".video-url").html()+"?fs=1&amp;hl=en_EN&autoplay=1";
		//alert($("#video-movie").attr("id"));
		//alert($("#video-object").attr("id"));
		video_obj='<object id="video-object"><param name="movie" id="video-movie" value="'+url+'"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed src="'+url+'" id="video-embed" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="240" width="290"></object>';
		
		$("#video-object").html(video_obj);
	
	}
	
	$(".album-thumb").click(function(){
		
		src=$(this).attr("src").replace("_album","");
		$("#album-big").attr("src",src);
		
	});
	
});	
