$(document).ready(function(){
	$('#menu ul li').mouseover(function()
	{
		//$(this).stop();
		$(this).css("background-color", "#12a8e7");
		$(this).css("color", "#fff");
		
	}).mouseout(function()
	{
		//$(this).stop();
		$(this).css("background-color", "#ececec");
		$(this).css("color", "#3e3e3e");
	});
	
	$('.gallery h2').hover(function()
	{
		$(this).css("cursor", "pointer");
		$(this).css("background-color", "#ececec");
	},function()
	{
		$(this).css("background-color", "#fff");
	});	
	
	
	$('.gallery h2').click(function()
	{
		$(this).next('div').slideToggle();
		$(this).toggleClass("gallery-up");
	}
	);
});
