window.onload = function() {
    // Fix PNG for Ie 6
    if ((/MSIE 6\.0/).test(navigator.userAgent) && !(/MSIE 7\.0/).test(navigator.userAgent) && !(/MSIE 8\.0/).test(navigator.userAgent)) {
        DD_belatedPNG.fix(".FixPng");
    }
}

$(document).ready(function(){
		function hideLabel(obj,text) {
		$("#" + obj).focus(function() {
			if(jQuery(this).val() == text) {
				jQuery(this).val("");
			}
		});
		jQuery("#" + obj).blur(function() {
			if(jQuery(this).val() == "") {
			jQuery(this).val(text);
			}
		});
	}
	hideLabel('ctl00_Header1_txtEmail','Username');
	$("#currency").genCurrency();
	$("#goldprice").genGoldPrice();
});

