$(document).ready(function() {
	breakout_of_frame();
	$("#privacy_content").hide();
	$("#terms_content").hide();
	$("#loadingLogin").hide();
	$("#loadingRegistration").hide();

$('a.panel').click(function () {
	
		current = $(this);
				
		$('#wrapper').scrollTo($(this).attr('href'), 1300);		
		
		return false;
	});


$('#privacy').click(function () {
	$("#privacy_content").fadeIn("slow");

});


$('#closeprivacy').click(function () {
	$("#privacy_content").fadeOut("slow");

});
$('#closeprivacy1').click(function () {
	$("#privacy_content").fadeOut("slow");

});

$('#terms').click(function () {
	$("#terms_content").fadeIn("slow");

});


$('#closetermscontent').click(function () {
	$("#terms_content").fadeOut("slow");

});
$('#closetermscontent1').click(function () {
	$("#terms_content").fadeOut("slow");

});


});
