$(function() {
	$('#fb_link').click(function() {
window.open ('http://www.facebook.com/pages/Wellington-New-Zealand/Capital-Commercial-Furniture-Ltd/126149377436012','_blank')
	});
	$('#video_link').click(function() {
		$('#video_black').fadeIn('slow');
		$('#video_cont').animate({
			width: '640px',
			height: '385px',
			opacity: 'toggle',
			marginLeft: '-320px',
			marginTop: '-192px'
		});
		var player = '<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/lEnOHjGvlVs?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/lEnOHjGvlVs?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385" id="CCFnz_video"></embed></object><div style="z-index: 1000; width: 30px; height: 30px; position: absolute; right: -20px; top: -20px; cursor: pointer;" onclick="return closeblack();"><img src="./imgs/cross_30.png" border="0"/></div>';
		$('#video_cont').html(player);
	});
	$('#video_black').click(function() {
		$('#video_black').fadeOut('slow');
		$('#video_cont').animate({
			width: '10px',
			height: '10px',
			opacity: 'toggle',
			marginLeft: '-5px',
			marginTop: '-5px'
		});
		$('#CCFnz_video').remove();
	});
});

function closeblack() {
	$('#video_black').fadeOut('slow');
	$('#video_cont').animate({
		width: '10px',
		height: '10px',
		opacity: 'toggle',
		marginLeft: '-5px',
		marginTop: '-5px'
	});
	$('#CCFnz_video').remove();
	return false;
}
