// JavaScript Document

var wOpen = false;	
var popup = "";
function OpenWindow(url,width,height,scroll,posn) {
	var topPosn=0;
	var leftPosn=0;
	if (posn == 1) {
		topPosn=(screen.height - height)/2;
		leftPosn=(screen.width - width)/2;
	}
	var windowprops = "location=0,scrollbars=" + scroll + ",menubar=0,toolbar=0," + "resizable=0,left=" + leftPosn + ",top=" + topPosn + ",width=" + width + ",height=" + height;
	popup=window.open(url, "popup", windowprops);
	//popup.focus();
	wOpen = true;
}

$(document).ready(function () {
    $('#s5').cycle({
        fx: 'fade',
        speed: 2500,
        timeout: 6500
    });
});

	
