jQuery for Solar Associates


$(document).ready(function(){
var front = document.location.href;
var myText = "Lottie Child - Street Training residency, Chisenhale Gallery 2007";
var myLink = "http://www.solarassociates.net/lottie-child/";
var myImage = "http://www.solarassociates.net/storage/bannerimg/banner07lottieleadingtheblind.jpg";
//Need to prevent the code to change the frontpage banner as the pages are also published to the frontpage
if(front!='http://www.solarassociates.net/') {
$("#topBanner").css({ backgroundImage:"url("+myImage+")", backgroundRepeat:"no-repeat" });
$("#topBanner").hover(
function () {
$(this).append($("<div id=" myHover" >"+"<a href=" "+myLink+"" ></a><div class=" text" >"+myText+"</div></div>"));
},
function () {
$(this).find("div:last").remove();
});}
});