//GET THE ARTIST

$(function(){ 

artistimg = $('body').css('background-image');
artistimg = artistimg.replace('url("http://www.leekunited.co.uk/media/backgrounds/', "");
artistimg = artistimg.replace('")', "");

artistimg = artistimg.replace('url(http://www.leekunited.co.uk/media/backgrounds/', "");
artistimg = artistimg.replace(')', "");

//alert(artistimg);

/* 
To edit the artist name simply replace the names below cross referencing the image name.

NOTE: Ensure that double quotes are intact around edited details or script will fail
*/

if(artistimg == "bg-savings.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-ashbourne.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-cheadle.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-congleton.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-derby.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-hanley.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-financial-planning.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-insurance.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-macclesfield.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-mortgage.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-newcastle.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-oakengates.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-st-edward.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-uttoxeter.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-market-drayton.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-leek-derby-st.jpg") { artist = "Photographed by Brett Trafford"; }
else if(artistimg == "bg-the-humphrey-club.jpg") { artist = "Photographed by Brett Trafford"; }
else { artist = "Photographed by Brett Trafford"; }
 
$('#artist-block span a').html(artist);
$('#artist-block-ie6 span a').html(artist);
});
