$(document).ready(function() {
	 /*$("#promo_link_2").click(function(){
 			set_active_link($(this));
		 	$(".tab_item").hide();
				$("#promo_2").show();
		});

	 $("#promo_link_3").click(function(){
 			set_active_link($(this));
		 	$(".tab_item").hide();
				$("#promo_3").show();
		});

	 $("#promo_link_4").click(function(){
 			set_active_link($(this));
		 	$(".tab_item").hide();
				$("#promo_4").show();
		});*/

		//Show login form
		$("#login_show").click(function(){
			$("#login").toggle();
			$(this).toggleClass('active_btn');
		});				
  
		//Watermark for login form
		$(".username_field").watermark("Username ", {useNative: false});
		$(".password_field").watermark("Password ", {useNative: false});
        $(".username_reset_field").watermark("Account email address ", {useNative: false});
        $(".password_reset_field").watermark("Password reset token ", {useNative: false});
        
        $(".email_field").watermark("Email ", {useNative: false});
        $(".re_password_field").watermark("Re-type Password ", {useNative: false});
        
})

function set_active_link(item){
	$(".tabs_list a").removeClass();
 item.addClass('active'); 	
}
