//Ready
///////////////////////
$(document).ready(function() {
	$('#tabs').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager:  '#tab-nav', 
	    pagerAnchorBuilder: function(idx, slide) { 
	        // return selector string for existing anchor 
	        return '#tab-nav li:eq(' + idx + ') a'; 
	    } 
	});
	$('#p-slides').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager:  '#p-nav', 
	    pagerAnchorBuilder: function(idx, slide) { 
	        // return selector string for existing anchor 
	        return '#p-nav li:eq(' + idx + ') a'; 
	    } 
	});
});
///////////////////////

