function showvideo(){
	$(".showplay").hide();	
	jQuery("#view").hide();
	jQuery("#img img").fadeOut(fospeed);
	jQuery("#swf-img").animate({height: "355px"},anspeed,function(){ jQuery("#swf-test").show();});
}
jQuery(function(){
	jQuery('#swf-replace').flash({swf: 'http://hlp.tv/wp-content/production/video.swf', height: 355, width: 632, allowFullScreen: true, wmode:"transparent", flashvars: {
					videoURL: vid
				}});
	jQuery('#view').show();
	
	jQuery("#showswf").click(function(){
		showvideo();
		return false;
	});
	jQuery("#view").click(function(){
		showvideo();
		return false;
	});
		
});
