jQuery(document).ready(function(){
	if (jQuery('#video-making-of-selection').length == 1) {
		jQuery('#video-making-of-selection').click(function(){
			jQuery('#video-making-of-selection').fadeOut('fast', function(){
				jQuery('#ph-making-of-selection').html(get_video_html('selection'));
				jQuery('#ph-making-of-selection').css('text-align', 'center');
			});
		});
	}
	if (jQuery('#video-making-of-fashion').length == 1) {
		jQuery('#video-making-of-fashion').click(function(){
			jQuery('#video-making-of-fashion').fadeOut('fast', function(){
				jQuery('#ph-making-of-fashion').html(get_video_html('fashion'));
				jQuery('#ph-making-of-fashion').css('text-align', 'center');
			});
		});
	}
	if (jQuery('#video-making-of-cheek').length == 1) {
		jQuery('#video-making-of-cheek').click(function(){
			jQuery('#video-making-of-cheek').fadeOut('fast', function(){
				jQuery('#ph-making-of-cheek').html(get_video_html('cheek'));
				jQuery('#ph-making-of-cheek').css('text-align', 'center');
			});
		});
	}
});

function get_video_html(video) {
	return '<OBJECT WIDTH="600" HEIGHT="375" id="making-of-selection-vid"><PARAM NAME=movie VALUE="http://www.lisca.com/uploads/videos/making_of/making_of_'+video+'.swf"><PARAM NAME=quality VALUE=high><PARAM NAME=play VALUE=true><PARAM NAME=loop VALUE=false><PARAM NAME=menu VALUE=true><PARAM NAME=bgcolor VALUE=#F4E9E9><EMBED src="http://www.lisca.com/uploads/videos/making_of/making_of_'+video+'.swf" quality=high bgcolor="#F4E9E9" WIDTH="600" HEIGHT="375" NAME="making-of-selection-vid" ALIGN="" PLAY="true" LOOP="false" MENU="true" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>';
}
