/*
 *	Erin Recycling
 *	"Perfection is achieved not when there is nothing more to add, but when there is nothing left to take away.” - Antoine de Saint-Exupery
 *
 *	And boy do we have a lot to take away!
 */

$(document).ready(function(){

	$(".external").click(function(){
 		var newWindow = window.open(this.getAttribute('href'), '_blank');
  		if (newWindow) {
			if (newWindow.focus) {
				newWindow.focus();
				return false;
			}
  		} else {
			return true;
		}
	});

	$('.gallery_image').click(function(){

		var img = $('img', this).attr('src');
		img = img.replace("thumbnails", "images");
		$('#main_gallery_image').html('<img src="'+img+'" alt="" />');
		return false;

	});

	$('ul#gallery_cat_thumbs').load(function(){

		var img = $('img', '.gallery_image').attr('src');
		img = img.replace("thumbnails", "images");
		$('#main_gallery_image').html('<img src="'+img+'" alt="" />');
		return false;

	});

	$('.forgot').click(function(){

		var username = $('.forgot_name').val();
		if(username == ""){
			$('.brat').html('You must supply your username to recover your password.');
			$('.forgot_name').addClass('missing');
			return false;
		} else {
			return true;
		}

	});

	$('#Login2_LoginButton').val('').addClass('submit_arrow');
	
	

});