function GetEventImages(eventid){
if(eventid != "") {
document.getElementById("eventsimage").style.visibility = "visible";
new Ajax('http://www.westonfavellshopping.com/processes/getGalleryImages.php', {
	method: 'post',
	//if method is post, you can write parameters here.  
	//Can be a querystring, an object or a Form element.
	postBody: 'eventid='+eventid,
	//$(element) to insert the response text of the XHR into, upon completion of the request.
	update: $('galleryimages'),
	//Execute scripts in the response text onComplete.
	evalScripts: true
}).request();	
}
}
function scroller(element) {
    new Fx.Scroll(window).toElement(element);

}