	$(function() {
		$("#dialogX").dialog({
			resizable: false,
			height: 250,
			width: 400,
			modal: true,
			autoOpen: false
		});
	});
	function opendlg(){
		$("#dialogX").dialog('open');
	}
	function closedlg(){
		$("#dialogX").dialog('close');
	}

/* function to control the manual load banner script */
	function imageBanner(){
		$('#b_gallery a').click(function(evt) {
			//don't follow link
			evt.preventDefault();
			//get path to new image
			var imgPath = $(this).attr('href');
			//get reference to old image
			var oldImage = $('#b_photo img');
			if (imgPath == oldImage.attr('src')) {
				//if they are then you're done
				return;
			} else {
				//create HTML for new image
				var newImage = $('<img src="' + imgPath +'">');
				//make new image invisible
				newImage.hide();
				//add to the #b_photo div
				$('#b_photo').prepend(newImage);
				//fade out old image and remove from DOM
				oldImage.fadeOut(1000,function(){
					$(this).remove();
				});
				//fade in new image
				newImage.fadeIn(1000);
			 }
		}); // end click
		$('#b_gallery a:first').click();
	}
