﻿$(function() {
	$('#header-banner').cycle({ 
		fx: 'fade'
	});
});
function toggle(obj,flag){
	var el = document.getElementById(obj);
	if(el){
	el.style.display=(flag?'block':'none')
	}
}
function saveImage(theFile){
	//var theSrc = $('#output').val();
	//var arr = theSrc.split("/");
	//var theFile = arr[arr.length-1];
	window.open("saveImage.asp?file=" + theFile);
	
}