// ========================================================================================
//		Hides and shows the FAQ's
// ========================================================================================
function ToggleAnswer(Ans)
{

	if (document.getElementById(Ans).style.visibility=='hidden')
	{
		document.getElementById(Ans).style.visibility='visible';
		document.getElementById(Ans).style.display='';
	}
	else
	{
		document.getElementById(Ans).style.visibility='hidden';
		document.getElementById(Ans).style.display='none';
	}
}
// ========================================================================================
//		Detect Javascript enabled
// ========================================================================================

function LightboxLogin()
{
    document.getElementById('userLogin').style.display = 'block';
    document.getElementById('light').style.display='block';
    document.getElementById('fade').style.display='block';
}

// ========================================================================================
//		Clear searchbox input
// ========================================================================================
function clearOnFocus(type)
{
    if (type.value == type.defaultValue) {
      type.value = "";
      return false;
	}
}

// ========================================================================================
//		closerlove form submit
// ========================================================================================
function datingFormSubmit()
{
    window.location.href='http://app.whitelabeldating.com/search/?wldsite=8017&minage=' + document.getElementById('minage').options[document.getElementById('minage').selectedIndex].value + '&maxage=' + document.getElementById('maxage').options[document.getElementById('maxage').selectedIndex].value + '&region=' + document.getElementById('region').options[document.getElementById('region').selectedIndex].value + '&gender=2&sexuality=1';
}

$(document).ready(function () {

    $('#promoContainer .promoSlot')

        .hover(
            function () {
                $(this).children('div').stop().animate({ height: 130 }, 200);
            },

            function () {
                $(this).children('div').stop().animate({ height: '86' }, 200);
            }
        )

});
