function mainmenu(){
	jQuery("#navigation a").removeAttr("title");
	jQuery("#navigation ul:first").css({display: "none"}); // Opera Fix
	jQuery("#navigation > li").hover(function(){
		jQuery(this).find('ul:first').css({visibility: "visible", display: "none"}).slideDown(400);
		},function(){
		jQuery(this).find('ul:first').css({visibility: "hidden"});
		});
}


$(document).ready(function($) {
	
	mainmenu(); // Navigation
	
	$("#expand-button").toggleClass('collapse').parent('nav').find('ul').slideToggle();

	
// --------------------
//	Share button animation
// --------------------

	$('#share-box a, .social-button-holder a').hover(function(){
		$(this).stop().animate({ opacity : 0.5 }, 200 );
		},
		function () {
			$(this).stop().animate({ opacity : 1 }, 200 );
		}
	);

	
// --------------------
//	Toggle Content
// --------------------

	$(".expanding .expand-button").click(function () {
		$(this).toggleClass('close').parent('div').find('.expand').slideToggle('slow');
	});
	

// --------------------
// Image Gallery Hover
// --------------------
	
	$('.gallery-item').hover(function(){
		$('img', this).stop().animate({ opacity : 0.5 }, 200 );
		},
		function () {
			$('img', this).stop().animate({ opacity : 1 }, 200 );
		}
	);		
		
});	
