$(document).ready(function() {
    $('#featured_inner').cycle({
		fx:     'fade',
		speed: 1000, 
		
    prev:   '#prev', 
    next:   '#next', 
	timeout: 7000
	  
	});
	});
	
$(document).ready(function (){  
 
    $("#featured").hover(function() {  	
	$('#prev').animate({ 'left' : '+=70'}, 600); 
	
	$('#next').animate({ 'right' : '+=70'}, 600); 

},
function() {   
	
	$('#prev').animate({ 'left' : '-50px'},200); 
	$('#next').animate({ 'right' : '-50px'}, 200); 

});	 
  $("#featured").click(function() { 
  	$('#prev').animate({ 'left' : '-50px'},200); 
	$('#next').animate({ 'right' : '-50px'}, 200); 
  });

});	



  $(document).ready(function (){       

   $(".single").hover(function() {    
	if($(this).hasClass('current')) {
  
}
else {
 $('.title',this).css({ 'color': "#000000"}); 
	$('img',this).css({ 'opacity': "1", 'filter': "alpha(opacity=100)"});

	
}
	

},
function() {   
	$('.title',this).css({ 'color': "#cfcfcf"});
	$('img',this).css({ 'opacity': '0.5', 'filter': 'alpha(opacity=50)'});

});	
 $(".single_news").hover(function() {    
	
 $('.excerpt',this).css({ 'color': "#333333"}); 
	$('img',this).css({ 'opacity': "0.8", 'filter': "alpha(opacity=80)"});

	

	

},
function() {   
	$('.excerpt',this).css({ 'color': "#bdbdbd"});
	$('img',this).css({ 'opacity': '100', 'filter': 'alpha(opacity=100)'});

});	



});
$(document).ready(function (){  
	 $('#overlay').localScroll({
   target:'body',
   
   axis:'y',
   queue:true, //one axis at a time
  duration:1200
   
});
});



