// unobtrusive javascript

$(document).ready(function(){ 

//add more item
	$('#ticketnet .more').click (function () {
		if ( $("#ticketnet .hide").length > 1 ) {
			$('#ticketnet ul').children('li.hide:first').fadeIn('slow').removeClass('hide');
		}
		else {
			$('#ticketnet ul').children('li.hide:last').fadeIn('slow').removeClass('hide');
			$(this).fadeOut();
		}
		return false;
	});

//clickable element
  $('#ticketnet ul li').click (function () {
	 window.location=$(this).find('a').attr('href');
	 return false;
	});

}); //end dom ready
