$(document).ready(function() {
	
	/**
	 * social buttons fade
	 */
	var ms = 300;
	
	$('div#social img,a.link_img img').hover(
		function() {
			$(this).fadeTo(ms, 0.8);								   
		},
		function() {
			$(this).fadeTo(ms, 1);
		}
	);
	
	$('div#events_today').cycle({
		fx: 'fade',
		 shuffle: { 
        	top:  -110, 		// -110
        	left:  -10 			// -40
    	}, 
		timeout: 6000,
		prev: $('a#event_prev'),
		next: $('a#event_next')
	});
	
	$('div#group_events').click(function(event) {
		var self = $(this);
		var link = self.find('a');
		var href = link.attr('href');
		window.location = href;
	});

});
