// JavaScript Document


$(document).ready(
	function() {
		
		$(".menu .item").hover(function(){
		$(this).addClass("hover");
		},function(){
		$(this).removeClass("hover");
		});
		
		$(".menu .item").click(function(){
	        window.location=$(this).find("a").attr("href"); return false;
	    });
		
		$(".comments a").hover(function(){
		$(this).parents(".image").addClass("hover");
		},function(){
		$(this).parents(".image").removeClass("hover");
		});
		
		$(".faq h2").eq(0).addClass("active");
		$(".faq div").eq(0).show();
	
		$(".faq h2").click(function(){
			$(this).next("div").slideToggle("slow")
			.siblings("div:visible").slideUp("slow");
			$(this).toggleClass("active");
			$(this).siblings("h2").removeClass("active");
		});
		
		$(".gallery .item").hover(function(){
		$(this).addClass("hover");
		},function(){
		$(this).removeClass("hover");
		});
		
		$(".gallery .item").click(function(){
	        window.location=$(this).find("a").attr("href"); return false;
	    });
		
		$('#gallery a').lightBox();
		
		
		
		
				
	});
