jQuery(function($){
	// Hover on post-boxes slides up the post excerpt


	$("a[href*=maps.google.co]").fancybox({
		type: 'iframe',
		width: 800,
		height: 600
	});

	$("div.gallery").each(function(i) {
		// Fancybox for maps and galleries
		$(".gallery-icon a", this).attr('rel', 'gallery' + i).fancybox();
		
		$(".gallery-icon", this).each(function() {
			var src = $("a", this).attr('href');
			$(this).append('<a href="' + src + '">Download Image</a>');
		});
	});
	
	// Hide the login form and replace it with a link
	var $loginForm = $("form.paypal-login-form").hide();
	
	$('<p><a href="#">Login</a></p>').click(function(){
		$(this).replaceWith($loginForm.show());
		
		return false;
	}).insertBefore($loginForm);
});

