$(document).ready(function(){
	$('.slideshow').cycle({ 
	    fx:     'fade', 
	    speed:  2000, 
	    next:   '.slideNext', 
	    prev:   '.slidePrev', 
	    timeout: 8000, 
	    startingSlide: 0
	});	
});

/*
	$('.content .slider-right-box-socialnetwork a').hover(function(){
		$(this).animate({opacity: '1'}, {queue:false, duration: 300});
	}, function(){
		$(this).animate({opacity: '0.4'}, {queue:false, duration: 300});
	});
	
	$('.content .item').hover(function(){
		$(this).find('.image p.pattern').hide();
		$(this).find('.info').animate({bottom: '10px'}, {queue:false, duration: 300});
		$('.header, .sidebar, .content .item').not(this).animate({opacity: '0.2'}, {queue:false, duration: 300});
	}, function(){
		$(this).find('.image p.pattern').show();
		$(this).find('.info').animate({bottom: '55px'}, {queue:false, duration: 300});
		$('.header, .sidebar, .content .item').not(this).animate({opacity: '1'}, {queue:false, duration: 300});
	});
*/
