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