$(document).ready(function () {
	var title = document.title;
	if (title == "The Official Website of Laura Bell Bundy :: Bloopers") {
		$("#nav li.navBloopers a").css("background-position", "-557px -213px");
		$("#nav li.navPeep a").css("background-position", "-340px 0").hover(function(){
			$(this).css("background-position", "-340px -71px");
		}, function(){
			$(this).css("background-position", "-340px 0");
		}).mousedown(function(){
			$(this).css("background-position", "-340px -142px");
		}).mouseup(function(){
			$(this).css("background-position", "-340px 0");
		})
	}
	else if (title == "The Official Website of Laura Bell Bundy :: Peep Show") {
		$("#nav li.navPeep a").css("background-position", "-340px -213px");
		$("#nav li.navBloopers a").css("background-position", "-557px 0px").hover(function(){
			$(this).css("background-position", "-557px -71px");
		}, function(){
			$(this).css("background-position", "-557px 0");
		}).mousedown(function(){
			$(this).css("background-position", "-557px -142px");
		}).mouseup(function(){
			$(this).css("background-position", "-557px 0");
		})
	}
	
	if (title == "The Official Website of Laura Bell Bundy :: Discography") {
		$("#discography .album .coverInfo .cover a").attr("href","javascript:void(0);");
		$("#discography .album .coverInfo h3 a").attr("href","javascript:void(0);");
	}
});
