/* ----------------------------------------------------------
	title		  : PC Framework
	created		  : 2/9/09
	last updated  : 2/9/09
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){



//show controls in admin
if ( $('#adminbar #toolbar').length ) {
	
	$('#feature').css({'overflow':'visible', 'margin-bottom':'120px'}).prepend('<p id="feature-controls"><span id="feature-prev"><a href="#">&laquo; Previous</a></span> <span id="feature-next"><a href="#">Next &raquo;</a></span></p>');
	
	$('#feature .regionBoundary .contentRegion .regionName').remove();
	$('#feature .regionBoundary .contentRegion .actions').before('<div class="slide"></div>');
	$('#feature .regionBoundary .contentRegion .actions').each(function(){
		$(this).prev('.slide').append($(this));
	});
	$('#feature .regionBoundary .contentRegion .element').each(function(){
		$(this).prev('.slide').append($(this));
	});

	$('#feature .regionBoundary .contentRegion').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    next:   '#feature-next', 
    prev:   '#feature-prev' 
	});
	


	
} else {


if ( $('#feature').length ) {
	$('#feature').cycle('fade');
	}

}


});//end doc ready