jQuery(document).ready(function() { 
	
	//menu
	jQuery('#menu ul li').hover(function() {
		jQuery(this).stop().animate({'backgroundColor':'#444'}, 300, 'swing');
			}, function() {
		jQuery(this).animate({'backgroundColor':'#333'}, 300);
	});
	
	jQuery('.button a').hover(function() {
		jQuery(this).stop().animate({'backgroundColor':'#555'}, 300, 'swing');
			}, function() {
		jQuery(this).animate({'backgroundColor':'#444'}, 300);
	});
	
	
	//free song
	jQuery('.e4m').hide();
	jQuery('.freesong a').click(function() {
		jQuery(this).fadeOut(200);
		jQuery('.e4m').delay(300).fadeIn('slow');
	});
	
	
	jQuery('.close').click(function() {
		jQuery('.e4m').fadeOut(200);
		jQuery('.freesong a').delay(300).fadeIn('slow');
	});
	
	
	//gigpress
	
	jQuery('.gigpress-info').hide();
	
	jQuery('.vevent > tr').toggle(function () {
			jQuery(this).next().fadeIn('normal');
		}, function () {
			jQuery(this).next().fadeOut('normal');																
	});
	
}); 

