/*
	function js_dissmiss_error_notification()
	{
		document.body.style.overflow = 'visible';
		$("div.cover_up").remove();
		$("div.pop_up").remove();
//		document.getElementById('error_container').style.display = 'none';
//		document.getElementById('error_container').innerHTML = '';
	}
	function js_error_notification(html)
	{
		document.body.style.overflow = 'hidden';
		$('body').prepend(html);
//		document.getElementById('error_container').style.display = 'block';
//		document.getElementById('error_container').innerHTML = html;
	}
*/
	$(document).ready(function()
		{
			$("select[@name=form_select]").change(function()
				{
					$("p#form_select_target").removeClass();
					var te = $("select[@name=form_select]").val();
					alert( te );
					$("p#form_select_target").addClass(te);
					
					return false;
				}
			);

			$("div.cover_up").fadeTo("opacity", 0.7);
		
      $("div.close_box").click(function()
				{
					$("div.event_pop_up").attr("id", "event_pop_off");
					//return false;
				}
			);				

			$("a#close_window").click( function()
				{
					$("div.pop_up").css("display","none");
					$("div.cover_up").fadeTo("slow", 0, function()
						{
							$("div.cover_up").css("display","none");										 
						}
					);
					
					//$("div.cover_up").css("display","none");
				}
			);

			$("div.forgot_box").hide();

			$("a#forgot_password").click( function()
				{
					$("div.forgot_box").toggle();	
				}
			);
		}
	);
