jQuery(function($) { // for conflict with prototype.js	
jQuery(document).ready(function(){
	
	//Featured
	$('#featured .slides')
	.before('<ul class="dots">')
	.cycle({
		speed: 1000, 
    	timeout: 10000,
		pause: 1,
		pager:  '.dots'
		});
	$('#featured .slides img').hover( function () {
		$('a.activeSlide').hide().addClass('pause').fadeIn(500);
	}, function () {
		$('a.activeSlide').hide().removeClass('pause').fadeIn(500);
	});	
	
	
});
});// end jquery function
