// JavaScript Document
// fancybox popup control
		$(document).ready(function() {
			$("#facebookJoinPopUp").fancybox({
				'width'				: 500,
				'height'			: 600,
				'speedIn'			: 500,
				'speedOut'			: 300, 
				'autoScale'			: false,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.4,
				'scrolling' 		: 'no',	
				'transitionIn' 		: 'elastic',
				'transitionOut' 	: 'elastic',
				'type'				: 'iframe'
			});
		});
		
		$(document).ready(function() {
			$("#facebookLoginPopUp").fancybox({
				'width'				: 500,
				'height'			: 600,
				'speedIn'			: 500,
				'speedOut'			: 300, 
				'autoScale'			: false,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.4,
				'scrolling' 		: 'no',	
				'transitionIn' 		: 'elastic',
				'transitionOut' 	: 'elastic',
				'type'				: 'iframe'
			});
		});
		
// Login form

$(document).ready(function() {
	$('#password-clear').show();
	$('#password-password').hide();
	$('#password-clear').focus(function() {
		$('#password-clear').hide();
		$('#password-password').show();
		$('#password-password').focus();
	});
	$('#password-password').blur(function() {
		if($('#password-password').val() == '') {
			$('#password-clear').show();
			$('#password-password').hide();
		}
	});
	$('.default-value').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});
});

