$(document).ready(function()
{
    $(document).pngFix();

    $(".formfield").focus(function()
    {
        if ($(this).val() == $(this)[0].title)
            $(this).val("");
    });
    
    $(".formfield").blur(function()
    {
        if ($(this).val() == "")
            $(this).val($(this)[0].title);
    });
    
    $(".formfield").blur();
    ChangeMainBanner(MainBanner);
});

function checkStringValue(InputID, DisplayLabel)
{
	if(!CheckString(InputID, DisplayLabel, 1))
		return false;
	if($("#"+InputID).val()==$("#"+InputID)[0].title)
	{
		$("#"+InputID).focus();
		alert('Specify '+DisplayLabel+', please.');
		return false;
	}
	return true;
}

var MainBanners = Array();
var MainBanner;
function ChangeMainBanner(Banner)
{
	$(".menu-inner-banner").css('background-image', Banner);
	return false;
}

