jQuery(function($){
	$('#galleryCategories').hide();
	$('#respond').hide();
	
//get full image url
	var fullimgurl = $('.gallerySingleContainer .full').attr('src');
	$('.gallerySingleContainer a#linkToFull').attr('href',fullimgurl);
	
	
//gallery category nav
	$('#viewByCategories').hover(
		function(){$('#galleryCategories').fadeIn('fast');},
		function(){$('#galleryCategories').fadeOut('slow');}
	);

	

//comment form
	$('a#commentLeave').click(function(){
		$('#respond').slideToggle(500, "easeInOutQuad");
		return false;
	});
	
	$('a#navAbout').click(function(){
		$('#about').slideToggle(800, "easeInOutExpo");
		return false;
	});	

//large photo box
	$('a#linkToFull').largePhotoBox();

//tooltip
	$('a#linkToFull').simpletip({ 
		// Configuration properties  
		content: "View Full Size",
		fixed: true,
		position: ["-6","-8"]
	});


	return false;
});
