  
  jQuery( document ).ready( function($){
  	
  	  	
		
		$( "#attachments" ).marquee();
		
		$('.video-thumb-link').click(function(e) {
			e.preventDefault();
			var videoId = $(this).attr('rel');
			
			var videoDetails = $(this).siblings('.video-thumb-details');
			var videoTitle = videoDetails.children('#video-title-hidden-text').html();
			var videoDesc = videoDetails.children('#video-description-hidden-text').text();
			
			$("#youtube_video").html('<object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/'+videoId+'&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/'+videoId+'&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object><div class="video-title">'+videoTitle+'</div><div class="video-desc">'+videoDesc+'</div>');
		});	
  });  


