
$(document).ready(function() {
	
	$('#mycarousel').jcarousel();  // Initialized jquery carousel
	
	$('#mycarousel1').jcarousel({
				'scroll':1,
				'auto':5
				});  // Initialized jquery carousel
	
	/*$("#slides-wrapper").easySlider({
				prevId: 'prevBtn',
				prevText: 'p',
				nextId: 'nextBtn',	
				nextText: 'n',
				auto: false, 
				speed: 1000,
				pause: 3000,
				controlsBefore:	'<div class="slider-nav">',
				controlsAfter: '</div>',
				continuous: true,
				numeric: false
			});*/
	//var clickctr = 0;
	//$('#prevBtn a').click(function(){ clickctr++; });
	
	//$('#nextBtn a').click(function(){  clickctr--; });
	
	// change widget title bg ( blue and red) altenatively
	var count = 0;
	$('#sidebar .widget-container').each(function(){
		if((count%2) == 0){ }										  
		else{ $(this).addClass('red');}	
		count++;
		});
	
});


