jQuery.noConflict();

// Restaurant block
jQuery('.restaurant').hover(function(){
	jQuery('.restaurant .overlay').stop().animate({ 'bottom' : '0' });
	}, function(){
		jQuery('.restaurant .overlay').stop().animate({ 'bottom' : '-90px' });
});

// Article scrollbar
jQuery('.articles').hover(function(){
	jQuery('.scrollbar-handle-container').fadeIn('slow');
	}, function(){
		jQuery('.scrollbar-handle-container').fadeOut('slow');
});

// Dropdown menu
jQuery("ul#menu li").hover(function() { 
	jQuery(this).find("ul#dropdown").stop(true, true).slideDown('normal');
	},function(){
	jQuery(this).find("ul#dropdown").stop(true, true).slideUp('normal');
});

// Social media buttons
jQuery('.social-share img').hover(function(){
	jQuery(this).stop().fadeTo(500, .3);
	}, function(){
		jQuery(this).stop().fadeTo(500, 1);
});
