$(function() {

	$("a[rel=group_photo]").fancybox({
		'titlePosition' : 'inside',
		'autoDimensions' : true,
		'autoScale' : true,
		'transitionIn' : 'none',
		'transitionOut' : 'none'
	});

	$("a.gallery_photo").fancybox({
		'titlePosition' : 'inside',
		'autoDimensions' : true,
		'autoScale' : true,
		'transitionIn' : 'none',
		'transitionOut' : 'none'
	});
	
	function makeShow() {
		var d = $(this).find("ul." + $(this).attr("class").replace("active", "").replace(" ", ""));
		var level = parseInt($(this).attr("class").replace("active", "").replace("", "").substr(6));
		if (level > 1) {
			d.css("left", $(this).outerWidth());
		}
		d.show(300);
	}
	function makeHide() {
		$(this).find('ul').hide(300);
	}
	var config = {    
		     over: makeShow,   
		     timeout: 500,   
		     out: makeHide   
	};
	$("#pages div#top div#top_menu ul li").hoverIntent(makeShow, makeHide);
	/*
	$("button#add_comment").click(function(){
		var url = $("#comment_add form").attr("");
		$.ajax({
			url: ''
		});
		return false;
	});
	*/
});
