 $(document).ready(function(){
/* 	alert("cycling"); */

	$('#box1').cycle({
	    fx:      'fade',
	    speed:    2000,
	    timeout:  3000,
	    random: 1,
	    pause: 1
	    

	});
	
	$('#box2').cycle({
	    fx:      'fade',
	    speed:    2000,
	    timeout:  12000,
	    pause: 1,

	});
	
	$('#box3').cycle({
	    fx:      'fade',
	    speed:    3000,
	    timeout:  5000,
	    pause: 1,

	});
	
	$('#box4').cycle({
	    fx:      'fade',
	    speed:    3000,
	    timeout:  7500,
	    pause: 1,

	});
	
	$('#box5').cycle({
	    fx:      'fade',
	    speed:    3000,
	    timeout:  9500,
	    pause: 1,

	});
	
	$('#box6').cycle({
	    fx:      'fade',
	    speed:    3000,
	    timeout:  9000,
	    pause: 1,

	});	
	

	//Table Sorters for Known tables
	 $("#business-directory").tablesorter({
	 	 sortList: [[0,0]],
	 	 cssAsc: "headerSortUp",
	 	 cssDesc: "headerSortDown",
	 	 cssHeader: "header"
	 
	 }); 
	  $("#artist-directory").tablesorter({
	  	sortList: [[1,0]],
	 	 cssasc: "headerSortUp",
	 	 cssdesc: "headerSortDown",
	 	 
	  }); 
	  
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    
    
	  
});