$(document).ready(function() {

	if($().fancybox) {

		$("a.videoup").fancybox({
			frameWidth : 470,
			frameHeight : 320,
			overlayShow : true,
			hideOnContentClick : true,
			showCloseButton : true
		});
		$('#rside-video').show();

		$("div#videos a").fancybox({
			frameWidth : 470,
			frameHeight : 320,
			zoomSpeedIn : 0,
			zoomSpeedOut : 0,
			overlayShow : true,
			showCloseButton : true
		});

		$("div#rside-video a").fancybox({
			frameWidth : 470,
			frameHeight : 320,
			zoomSpeedIn : 0,
			zoomSpeedOut : 0,
			overlayShow : true,
			showCloseButton : true
		});

		$("div#photos a").fancybox({
			zoomSpeedIn : 0,
			zoomSpeedOut : 0,
			overlayShow : true,
			showCloseButton : true
		});

		$("div.photos a").fancybox({
			zoomSpeedIn : 0,
			zoomSpeedOut : 0,
			overlayShow : true,
			showCloseButton : true
		});

		$("a.formup").fancybox({
			frameWidth : 470,
			frameHeight : 460,
			zoomSpeedIn : 0,
			zoomSpeedOut : 0,
			overlayShow : true,
			showCloseButton : true
		});

	}

	$('.videoup').show();
	$('.formup').show();
	$('img.preload').remove();
	$('img.vhide').fadeIn('slow');

	$('.videoroll').hide();

	$('#rside-video').hover(function() {
		$('.videoroll').fadeIn('normal');

	}, function() {
		$('.videoroll').fadeOut('normal');

	});
});

