// JavaScript Document


$(document).ready(function() {	
	$('#banner').after('<div id="nav">').cycle({
		fx: 'uncover',
		timeout: 6000,
		speed:  500,
		pause: 0,
		pager: '#nav'
	});	
	
	$(".fancyIframe").fancybox({
		'type': 'iframe',
		'width': 640,
		'height': 400,
		'overlayColor': '#000',
		'titleShow': false
	});
	
	$(".fancy").fancybox({
		'overlayColor': '#000',
		'titleShow': true,
		'titlePosition': 'inside'
	});
});

