// javascript
$(function(){
// popup
	$('.popup').popupWindow({ 
			centerBrowser:1,
			scrollbars: 1,
			height:600, 
			width:600
	});	
// holidays cycle
	$('#cycle').cycle({ 
		//fx:    'scrollLeft', 
		fx:    'fade', 
		speed: 3000,
		timeout: 3000
	});
});
