// NEWS TICKER
$(document).ready(function() {
	
    $('#news').cycle({
		fx: 		'fade',
		speed:  	400,
		timeout:  	3000,
		pause:  	1 
	});
	
});

// PEEL
$(document).ready(function(){

	$("#peel").hover(function() {
		$("#peel img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#peel img").stop() 
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});
	
});

// SLIDE
$(document).ready(function(){
	
	$(".btn-slide").click(function(){
		$("#network-content").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});

});