function openW(win_name,w,h)
{
var d = new Date;
window.open(win_name, 'openW'+d.getHours() + d.getMinutes() + d.getSeconds(), 'resizable=no,menubar=no,scrollbars=no,width='+w+',height='+h)
}


$().ready(function() {
	$(".fancyYoutube").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1&showsearch=0',
			'type'			: 'swf',
			'swf'			: {'allowfullscreen':'true', 'wmode':'transparent'} // <-- flashvars here
		});
		return false;
	}); 
	$(".fancyRutube").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'hideOnContentClick'	: false,
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
//			'href'			: this.href + '&iframe=true',
			'type'			: 'iframe'
		});
		return false;
	}); 
	$(".fancyVideo").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'hideOnContentClick'	: false,
			'title'			: this.title
		});
		return false;
	}); 
	$(".fancyImage").fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'width'			: 680,
			'height'		: 495
		});
}); 

