$(document).ready(function(){		
	//SHOW HIDE PASSWORD BOX
		$('input[name=Password]').css('display', 'none');
		
		$('input[name=PassShow]').focus(function(){
			$(this).css('display', 'none');
			$('input[name=Password]').css('display', 'block');
			$('input[name=Password]').focus();
		});
		
		$('input[name=Password]').blur(function(){
			if($(this).val() == ''){
				$(this).css('display', 'none');
				$('input[name=PassShow]').css('display', 'block');
			}
		});
	//SHOW HIDE PASSWORD BOX
	
	//CONTACT BOX STUFF
		$('input[type=hidden]').each(function(){
			$(this).css('display', 'none');
		});
			
		$(':input').focus(function(){
			if($(this).val() == $(this).attr('rel')){
				$(this).val('');
			}
		}).blur(function(){
			if($(this).val() == ''){
				var atty = $(this).attr('rel');
				$(this).val(atty);
			}
		});
	//CONTACT BOX STUFF

	//COLORBOX
	$("a[rel='example1']").colorbox();
	$("a[rel='example2']").colorbox();
	$("a[rel='example3']").colorbox();
});
