// JavaScript Document

$(document).ready(function(){

	$('.qhover').hover(function(){
		$(this).addClass("hovered");
		$('.qhover:not(.hovered)').stop().animate({'opacity': 0.3});
	}, function(){
		$(this).removeClass("hovered");
		$('.qhover:not(.hovered)').stop().animate({'opacity': 1});
	});
	
	$('.menu-btn').hover(function(){
		$(this).addClass("hovered");
		$('.menu-btn:not(.hovered)').stop().animate({'opacity': 0.3});
	}, function(){
		$(this).removeClass("hovered");
		$('.menu-btn:not(.hovered)').stop().animate({'opacity': 1});
	});



});
