

jQuery(document).ready(function($){

jQuery('#rotator').addClass('js');


if($.fn.Rotator) 
{
	
	var popletsRotator = $('#rotator').Rotator({ //Add rotator functionality
		interval: 10000,
		items_query: '.holder',
		item_query: '.item',
		current_class: 'current',
		duration: 700,
		easing: "swing",
		orientation: 'horizontal',
		horizontal_height: false,
		items_displayed: 1,
		start_pos: 0,
		buttons: '#rotator ul li a',
		button_active_class:'rotator-current'
	});
	
}
		
	
	
});
