/* Featured section of the home page */

$(document).ready(function() {

	$('#share ul').hide('slow');

	
	$('div#home-slider').cycle({ 			   
		fx:     'fade', 
		easing: 'easeInCubic',
		speed:  '600', 
		timeout: '8000',
		next:   '#rotate-right', 
    	prev:   '#rotate-left', 
		pause:  1
	});
	
	
	$('#share h2 a').click(function() {
		$('#share ul').slideToggle('fast');
	});
	


});
