$(document).ready(function(){
	// home page slider animation
	var counter = 0;
	if($.fn.cycle) {
		$('.slider').cycle({
			timeout: 4000,
			speed: 1000,
			prev : $('.prev'),
			next : $('.next')
		});
	}
// 	setInterval(function(){
// 		$('ul.des > li a').animate({'backgroundPosition' : '0'}, 500);
// 		$('ul.des > li').removeClass('activeSlide').eq(counter).find('a')
// 		.animate({'height' : '111px', 'paddingTop' : '518px', 'backgroundPosition' : '-192px 0'}, 1000, 'linear', function(){
// 			$(this).parent('li').addClass('activeSlide');
// 			$('.balls').css('backgroundPosition', '0px -' + (counter * 7) + 'px' );
// 			counter = (counter < 4)? counter + 1 : 0;
// 		});
// 		
// 		
// 	}, 3000);
	
}); 

