$(document).ready(function(){

    $("#domain").selectbox();
    
	$("a.iframe").fancybox({
		"frameWidth": 341,
		"frameHeight": 220
	});

	if($.cookie("color_shem")) {
		var cook = $.cookie("color_shem");

		if(cook == "color_1") {
			$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#f0ed00");
			$("#logo").css("background-color","#f0ed00");
		}
		else if(cook == "color_2") {
			$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#ff9900");
			$("#logo").css("background-color","#ff9900");
		}
		else if(cook == "color_3") {
			$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#ff0000");
			$("#logo").css("background-color","#ff0000");
		}
		else if(cook == "color_4") {
			$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#e42d73");
			$("#logo").css("background-color","#e42d73");
		}
		else if(cook == "color_5") {
			$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#f400f1");
			$("#logo").css("background-color","#f400f1");
		}
		else if(cook == "color_6") {
			$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#00ccff");
			$("#logo").css("background-color","#00ccff");
		}
		else if(cook == "color_7") {
			$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#99ff00");
			$("#logo").css("background-color","#99ff00");
		}
	}
	else {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#00ccff");
		$("#logo").css("background-color","#00ccff");
	}

	$("#top_button_1").click(function () {
		$("#f5").css("z-index","5");
		$("#f4").css("z-index","10");
		$("#f3").css("z-index","15");
		$("#f2").css("z-index","20");
		$("#f1").css("z-index","25");
		$("#f2_content,#f3_content,#f4_content,#f5_content").css("display","none");
		$("#f1_content").css("display","block");
		return false;
	});

	$("#top_button_2").click(function () {
		$("#f5").css("z-index","5");
		$("#f4").css("z-index","10");
		$("#f3").css("z-index","15");
		$("#f2").css("z-index","25");
		$("#f1").css("z-index","20");
		$("#f1_content,#f3_content,#f4_content,#f5_content").css("display","none");
		$("#f2_content").css("display","block");
		return false;
	});

	$("#top_button_3").click(function () {

		$("#f5").css("z-index","5");
		$("#f4").css("z-index","10");
		$("#f3").css("z-index","25");
		$("#f2").css("z-index","15");
		$("#f1").css("z-index","20");
		$("#f1_content,#f2_content,#f4_content,#f5_content").css("display","none");
		$("#f3_content").css("display","block");
		return false;
	});

	$("#top_button_4").click(function () {
		$("#f5").css("z-index","5");
		$("#f4").css("z-index","25");
		$("#f3").css("z-index","10");
		$("#f2").css("z-index","15");
		$("#f1").css("z-index","20");
		$("#f1_content,#f2_content,#f3_content,#f5_content").css("display","none");
		$("#f4_content").css("display","block");
		return false;
	});

	$("#top_button_5").click(function () {
		$("#f5").css("z-index","25");
		$("#f4").css("z-index","20");
		$("#f3").css("z-index","15");
		$("#f2").css("z-index","10");
		$("#f1").css("z-index","5");
		$("#f1_content,#f2_content,#f3_content,#f4_content").css("display","none");
		$("#f5_content").css("display","block");
		return false;
	});

	$("#color_1").click(function () {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#f0ed00");
		$("#logo").css("background-color","#f0ed00");
		$.cookie("color_shem", "color_1");
		return false;
	});

	$("#color_2").click(function () {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#ff9900");
		$("#logo").css("background-color","#ff9900");
		$.cookie("color_shem", "color_2");
		return false;
	});

	$("#color_3").click(function () {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#ff0000");
		$("#logo").css("background-color","#ff0000");
		$.cookie("color_shem", "color_3");
		return false;
	});

	$("#color_4").click(function () {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#e42d73");
		$("#logo").css("background-color","#e42d73");
		$.cookie("color_shem", "color_4");
		return false;
	});

	$("#color_5").click(function () {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#f400f1");
		$("#logo").css("background-color","#f400f1");
		$.cookie("color_shem", "color_5");
		return false;
	});

	$("#color_6").click(function () {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#00ccff");
		$("#logo").css("background-color","#00ccff");
		$.cookie("color_shem", "color_6");
		return false;
	});

	$("#color_7").click(function () {
		$("#input_1 input, #input_2 input, #menu_reg_1 a, #hoz #copy a").css("color","#99ff00");
		$("#logo").css("background-color","#99ff00");
		$.cookie("color_shem", "color_7");
		return false;
	});

});
