$(document).ready(function() {
	$('.thumb .title').hide(); 
	$('.thumb .descript').hide(); 
	$('.thumb .embed').hide(); 
	
	var title = $('.thumb .first').next('.title').text();
	var descript = $('.thumb .first').next().next('.descript').text();
	var embed = $('.thumb .first').next().next().next('.embed').html();
	$('#flash_text #flashtitle').html(title); 
	$('#flash_text #flashdescript').html(descript); 
	$('#flash #flashheader').html('<object width="400" height="224"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+embed+'&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id='+embed+'&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="224"></embed></object>'); 
	
	
	$('.thumb a').click(function() {
		var title = $(this).next('.title').text();
		var descript = $(this).next().next('.descript').text();
		var embed = $(this).next().next().next('.embed').html();
		$('#flash_text #flashtitle').html(title); 
		$('#flash_text #flashdescript').html(descript); 
		$('#flash #flashheader').html('<object width="400" height="224"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+embed+'&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id='+embed+'&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="224"></embed></object>'); 
		return false;
	});
	
		
	
});

