jQuery(document).ready(function(){if($('#txtSearch')){$('#txtSearch').focus(function(){if(this.title==this.value){this.value=''}});$('#txtSearch').blur(function(){if(this.value==''){this.value=this.title}})}if($('#price-nav')){$('#price-nav').find('li').click(function(e){var id=this.id.replace('navprice','price');$('#price-nav').find('li').removeClass('active');$(this).addClass('active');$('.price-item').addClass('hide');$('#'+id).removeClass('hide')})}if($('#basket-count')){if(site_root=="http://www.live.eno.org"||site_root=="http://www.eno.org"){ticketUrl='http://www.tickets.eno.org/my_basket_ajax.asp'}else{ticketUrl='http://www.tickets.enostaging.co.uk/my_basket_ajax.asp'}$.ajax({dataType:'jsonp',data:'id=10',jsonp:'jsonp_callback',url:ticketUrl})}});function jsonp_callback(data){var basketObj=JSON.parse(data);if(basketObj.items>0){$('#basket-count').addClass('populated')}$('#basket-count').html('('+basketObj.items+')')}