﻿$(document).ready(function () {
	
	// Show Listing Slideshow
	$('.show-slideshow').cycle({
        timeout: 8500,
		cleartypeNoBg: true,
		pause: true,
		random: true,
		fx: 'fade'
     });
	
	
		
	//Video Pop Up - Youtube Auto Play
	$(".videoPopup").click(function() {
				$.fancybox({
				'padding'			: 15,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.7,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'title'				: this.title,
				'width'				: 640,
				'height'			: 480,
				'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'				: 'swf',
				'swf'				: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
		return false;
	});
	
	
 });
