$(document).ready(function(){
	
	$('.photofade').cycle({fx: 'fade', speed: 6000});
	
	$.swapImage(".swapimage");
	     
	$("#pagepanels").wslide({
		width: 818,
		height: 1000,
		horiz: true,
		autolink: false,
		fade: true
        });
	
	// Display the ecommerce window (over the fading photos)
	var actualWidth = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		actualWidth = window.innerWidth;
	  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		actualWidth = document.documentElement.clientWidth;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		actualWidth = document.body.clientWidth;
	  }
	
	$('.openecommerce').openDOMWindow({ 
	height:700, 
	width:510, 
	positionType:'fixed', 
	positionTop: 0, 
	positionLeft: (actualWidth / 2) - 304,
	eventType:'click', 
	windowSource:'iframe', 
	windowPadding:0, 
	borderColor:'#000000',
	loader:0, 
	loaderImagePath:'/images/animationProcessing.gif', 
	loaderHeight:20, 
	loaderWidth:20 
	}); 

	
	}); 
