jQuery.noConflict();     
jQuery(document).ready(function($){
	
	$('#jQuery') 
	.before('<div id="navigator">') 
	.cycle({ 
	    fx:     'fade', 
	 	timeout: 15000,
		cleartype:  1,
	    pager:  '#navigator' 
	});
	
	$('#attorneys') 
	.cycle({ 
	    fx:     'fade', 
	 	timeout: 0,
		cleartype:  1
	});
	$('#attorneyLink1').click(function() { 
	    $('#attorneys').cycle(0); 
	    return false; 
	});
	$('#attorneyLink2').click(function() { 
	    $('#attorneys').cycle(1); 
	    return false; 
	});
	$('#attorneyLink3').click(function() { 
	    $('#attorneys').cycle(2); 
	    return false; 
	});
	$('#attorneyLink4').click(function() { 
	    $('#attorneys').cycle(3); 
	    return false; 
	});
	$('#attorneyLink5').click(function() { 
	    $('#attorneys').cycle(4); 
	    return false; 
	});
});
