$(document).ready(function() {
	// Put your custom jQuery in here - it will execute after DOM completion
  
	/* Focus/blur search box */
	
	$("input#search-box").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

  /* go to check out button */
  
   $('#btn-checkout').click(function(){
      window.location = "http://crashrecords.co.uk/online/cart.php?xCmd=checkout";
    });

}); // end ready

