// JavaScript Document
jQuery(document).ready(function() {
	$("a.popup").fancybox({
		'width'				: 940,
		'height'			: '50%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$('#hero-slide').cycle({
		pager: $('#hero-control'),
		fx: 'fade',
     
		// callback fn that creates a thumbnail to use as pager anchor 
		pagerAnchorBuilder: function(idx, slide) { 
			return '<a href="#" class="slide-'+idx+'">'+ idx +'</a>'; 
		},
		 		/*
		fx: 'tiles',
		tiles:
			{
				cols: 16,
				cssAfter:
					{
						top: 0
					},
				cssBefore:
					{
						top: -200
					}
			},*/
		speed: 1000,
		timeout: 4000
	});	
});



