if(!window.Ws)window.Ws={};
Ws.VideoBox={
	Init:function(p,rel)
	{
		if(!rel)rel='videobox';
		
		$(document).ready(function(){			
			$('a[rel='+rel+']').fancybox({
				titlePosition		: 'inside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
		});		
	}
}
Ws.Frame=function(url,w,h,m)
{
	$.fancybox({'href': url},
	{
		frameWidth			: w||750,
		frameHeight			: h||430,
		type				: 'iframe',
		modal				: (m?true:false)
	});
	
	return false;
};