$(function() {
	$('#bannerImage').imgpreload(function() {
		if ($("#bannerImage").length && $("#bannerImage").attr("title")) {
			var theBannerImg=$("#bannerImage");
			var theTitle=theBannerImg.attr("title");
			var bannerWidth=theBannerImg.width();
			var bannerHeight=theBannerImg.height();
			if (bannerWidth==0) {
				bannerWidth=theBannerImg.parent().width();
				}
			
			theTitle=theTitle.replace(/\|/g, "<br />");
			theBannerImg.after("<div id='bannerCaption'>"+theTitle+"</div>");
			var capX=bannerWidth-(1.1*$("#bannerCaption").width())-10;
			var capY=((bannerHeight-$("#bannerCaption").height())/2);
//			alert(bannerSlideTitleY);
			if(typeof(bannerSlideTitleY) != 'undefined') {
				capY=bannerSlideTitleY;
				}
			$("#bannerCaption").css( {
				"top": capY,
				"opacity": 0.2
				});
			$("#bannerCaption").animate( {
				"left": capX,
				"opacity": 0.7
				}, 1000);
			}
		});
	});

