$(document).ready(function() {

	$("html, span.multiselect div.optList div.bButtons a.ok").click(function(){
		$("ul.optList, div.optList").hide().parents("span.fl").css({zIndex: 1 });
	});

	$("span.multiselect div.optList li.optinLevel1").click(function(e) {
		return false;
	});

	$(function(){
		$("span.select input").each(function(){
			var selectedNode;
			if (this.value && this.value != -1) {
				selectedNode = $(this).parents("span.select").find("li[value='" + this.value + "']");
			} else {
				selectedNode = $($(this).parents("span.select").find("li:first"));
			}
			selectedNode.addClass("selected");
			$($(this).parents("span.select").find("a.selectBtn span:first")).text(selectedNode.children().text());
		});

		$("span.multiselect select").each(function(){
			var parent = $(this).parents("span.multiselect")
			var options = $(this).children();
			var lists = parent.find("li");
			var texts = [];
			for (i=0, j=0; i<options.length; i++) {

				if (options.eq(i).is(":selected")) {
					texts[j] = lists.eq(i).addClass("selected").children().text();
					j++;
				}
			}
			var txt = (texts.join(", ")) ? texts.join(", ") : parent.find("h6").text();
			parent.find("a.selectBtn").find("span").attr("title", txt).text(txt);
		});
	});

	$("span.select a.selectBtn").click(function(){
		var parent = $(this).parents("span.fl");
		if ( parent.find("ul.optList").is(":hidden") ) {
			$("ul.optList:visible, div.optList:visible").hide().parents("span.fl").css({zIndex: 1});
			parent.css({zIndex: 9999}).find("ul.optList").show();
		} else {
			parent.css({zIndex: 1}).find("ul.optList").hide();
		}
		return false;
	})

	$("span.select ul.optList li").click(function(){
		var parent = $(this).parents("span.fl");
		var selText = $(this).find("a").text();
		$(this).siblings().removeClass("selected");
		$(this).addClass("selected");
		parent.find("a.selectBtn").find("span").text(selText);
		parent.find("ul.optList").hide().end().css({zIndex: 1});
		parent.find("input").get(0).value = $(this).attr("value");
		return false;
	})

	/*
$("span.select a.selectBtn").each( function(){
		var parent = $(this).parents("span.select");
		var text = parent.find("ul.optList li.selected a").text();
		if (text != "") {
			$(this).find("span").text(text);
			parent.find("input").get(0).value = parent.find("ul.optList li.selected").attr("value");
		}
	});
*/


	$("span.multiselect a.selectBtn").click(function(){
		var parent = $(this).parents("span.fl");
		if ( parent.find("div.optList").is(":hidden") ) {
			$("ul.optList:visible, div.optList:visible").hide().parents("span.fl").css({zIndex: 1});
			parent.css({zIndex: 9999}).find("div.optList").show();
		} else {
			parent.css({zIndex: 1}).find("div.optList").hide();
		}
		return false;
	})

	$("span.select a.selectBtn, span.multiselect a.selectBtn").each( function(){
		var parent = $(this).parents("span.select") || $(this).parents("span.multiselect");
		var selected = parent.find("li.selected");
		var texts = [];
		var values = [];

		if (selected.length > 0) {
			for (i = 0; i < selected.length; i++) {
				texts[i] = selected.eq(i).find("a").text();
			}
			$(this).find("span").text(texts.join(", "));
		} else {

		};
	});

	/*$(function() {
		$("#QuickContactsForm #p204 textarea").text("Message");
	});*/

    $("input[type=text]").each(function(){
        var label = $(this).parents(".fl").find("label:hidden");

        if (!this.value) {
            this.value = label.text();
        }
    });

    $("textarea").each(function(){
        var label = $(this).parents(".fl").find("label:hidden");

        if (!this.value) {
            this.value = label.text();
        }
    });

    $("form").submit(function(){
		$(this).find("input[type=text]").each(function(){
            var label = $(this).parents(".fl").find("label");

            if (label.text() == this.value) {
				this.value = '';
			}
		});
        $(this).find("textarea").each(function(){
            var label = $(this).parents(".fl").find("label");

            if (label.text() == this.value) {
				this.value = '';
			}
		});
	});

	$("input[type=password]").each(function() {
		var confirmTxt = $(this).parents("span.fl").prev().find("input").is("[type=password]") ? "Confirm " : "";
		var insTag = "<input type='text' value='"+confirmTxt+"Password*' />";
		var fakeInp;

		function removeFakeInp() {
			var Inp = $(this).prev();
			$(this).remove();
			Inp.show().focus();
		}

		var _this = this;
		var showFakeInp =  function () {
			if ($(_this).val() == "") {
				var tabI = $(_this).attr("tabindex");
				$(_this).hide().after(insTag);
				fakeInp = $(_this).next("input");
				fakeInp.bind("focus", removeFakeInp);
				fakeInp.attr("tabindex",tabI);
			}
		}

		$(this).bind("blur",showFakeInp);

		showFakeInp();

	});


	$("#mainLoginForm #email").each(function() {
		if($(this).val() == "") {
			$(this).val("E-mail*");
		}
	});

	$("#mainLoginForm #email").focus(function() {
		if ($(this).val() == "E-mail*") $(this).val("");
	});

	$("#mainLoginForm #email").blur(function() {
		if($(this).val() == "") {
			$(this).val("E-mail*");
		}
	});

});

function confirmDialog(message, url) {
    if (confirm(message)) {
        location.href = url;
    }
}

Date.prototype.format=function(format){var returnStr='';var replace=Date.replaceChars;for(var i=0;i<format.length;i++){var curChar=format.charAt(i);if(replace[curChar]){returnStr+=replace[curChar].call(this);}else{returnStr+=curChar;}}return returnStr;};Date.replaceChars={shortMonths:['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],longMonths:['January','February','March','April','May','June','July','August','September','October','November','December'],shortDays:['Sun','Mon','Tue','Wed','Thu','Fri','Sat'],longDays:['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],d:function(){return(this.getDate()<10?'0':'')+this.getDate();},D:function(){return Date.replaceChars.shortDays[this.getDay()];},j:function(){return this.getDate();},l:function(){return Date.replaceChars.longDays[this.getDay()];},N:function(){return this.getDay()+1;},S:function(){return(this.getDate()%10==1&&this.getDate()!=11?'st':(this.getDate()%10==2&&this.getDate()!=12?'nd':(this.getDate()%10==3&&this.getDate()!=13?'rd':'th')));},w:function(){return this.getDay();},z:function(){return"Not Yet Supported";},W:function(){return"Not Yet Supported";},F:function(){return Date.replaceChars.longMonths[this.getMonth()];},m:function(){return(this.getMonth()<9?'0':'')+(this.getMonth()+1);},M:function(){return Date.replaceChars.shortMonths[this.getMonth()];},n:function(){return this.getMonth()+1;},t:function(){return"Not Yet Supported";},L:function(){return"Not Yet Supported";},o:function(){return"Not Supported";},Y:function(){return this.getFullYear();},y:function(){return(''+this.getFullYear()).substr(2);},a:function(){return this.getHours()<12?'am':'pm';},A:function(){return this.getHours()<12?'AM':'PM';},B:function(){return"Not Yet Supported";},g:function(){return this.getHours()%12||12;},G:function(){return this.getHours();},h:function(){return((this.getHours()%12||12)<10?'0':'')+(this.getHours()%12||12);},H:function(){return(this.getHours()<10?'0':'')+this.getHours();},i:function(){return(this.getMinutes()<10?'0':'')+this.getMinutes();},s:function(){return(this.getSeconds()<10?'0':'')+this.getSeconds();},e:function(){return"Not Yet Supported";},I:function(){return"Not Supported";},O:function(){return(-this.getTimezoneOffset()<0?'-':'+')+(Math.abs(this.getTimezoneOffset()/60)<10?'0':'')+(Math.abs(this.getTimezoneOffset()/60))+'00';},T:function(){var m=this.getMonth();this.setMonth(0);var result=this.toTimeString().replace(/^.+ \(?([^\)]+)\)?$/,'$1');this.setMonth(m);return result;},Z:function(){return-this.getTimezoneOffset()*60;},c:function(){return"Not Yet Supported";},r:function(){return this.toString();},U:function(){return this.getTime()/1000;}};

function onMultiSelectValueClick(e, elem) {
    var parent = $(elem).parents("span.fl");
    var selected = undefined;
    var options = undefined;
    var lists = undefined;
    var texts = [];

    if (e.ctrlKey) {
        if ( $(elem).hasClass("selected") ) {
            $(elem).removeClass("selected");
        } else {
            $(elem).addClass("selected");
        }
    } else {
        $(elem).siblings().removeClass("selected");
        $(elem).addClass("selected");
        parent.find("div.optList").hide().end().css({zIndex: 1});
    }

    options = parent.find("option");
    lists = parent.find("li");
    for (i=0,j=0;i<lists.length;i++){
        if (lists.eq(i).hasClass("selected")) {
            texts[j]=lists.eq(i).find("a").text();
            j++;
            options.eq(i).attr("selected","selected");
        } else {
            options.eq(i).removeAttr("selected");
        }
    }

    var txt = (texts.join(", ")) ? texts.join(", ") : parent.find("h6").text();
    parent.find("a.selectBtn").find("span").attr("title", txt).text(txt);
    return false;
}
