// Bind an event to window.onhashchange that, when the history state changes,
  // gets the url from the hash and displays either our cached content or fetches
  // new content to be displayed.
  $(window).bind( 'hashchange', function(e) {
    
    // Get the hash (fragment) as a string, with any leading # removed. Note that
    // in jQuery 1.4, you should use e.fragment instead of $.param.fragment().
    var url = $.param.fragment();
    
    // Add .bbq-current class to "current" nav link(s), only if url isn't empty.
    if(url == '/home') {
    document.title = artist + ' - Official Site';
    }
	else if(url == '/music') {
    document.title = artist + ' - Music';
    }
	else if(url == '/biography') {
    document.title = artist + ' - Biography';
    }
	else if(url == '/discography') {
    document.title = artist + ' - Discography';
    }
	else if(url == '/media') {
    document.title = artist + ' - Media';
    }
	else if(url == '/merchandize') {
    document.title = artist + ' - Merchandize';
    }
	else if(url == '/press') {
    document.title = artist + ' - Press';
    }
	else if(url == '/contact') {
    document.title = artist + ' - Contact';
    }
	else if(url == '/bookings') {
    document.title = artist + ' - Bookings';
    }
	else {
	document.title = artist + ' - Official Site';
	}
  });
