$(document).ready(function(){
	
	$(".gallery_toggle").mouseover(function () {
		$(this).css(
			"background-color", "#FFF7E1"
		);
		$("body").css("cursor", "pointer");
	});
	
	$(".gallery_toggle").mouseleave(function () {
		$(this).css(
			"background-color", "#eeeeee"
		);
		$("body").css("cursor", "auto");
	});
	
	$(".gallery_toggle").click(function () {
		$(this).next().slideToggle(300);
	});
	
	$(".arrow").mouseover(function () {
		$(this).animate({
		    opacity: 0.7
		  }, 100
		);
	});
	
	$(".arrow").mouseleave(function () {
		$(this).animate({
		    opacity: 0
		  }, 100
		);
	});
	
	$("a.grouped").fancybox();
});
