// ---------- script properties ----------


var results_location = "../../results.html";



// ---------- end of script properties ----------



function search_form(jse_Form) {
	if (jse_Form.d.value.length > 0) {
		document.cookie = "d=" + escape(jse_Form.d.value) +"; path=/";
		window.location = results_location;
	}
}
 
//----------- 2chk on Finovate video ------------ 
  function startvideo(){
	$("#startVideo").hide();
	$('#videoContainer').prepend($('<object width="400" height="260">'+
              '<param name="src" value="../Images/2chk/Authentify.mov" />'+
              '<param name="autoplay" value="true" />'+
              '<param name="loop" value="false" />'+
             '<param name="controller" value="true" />'+
              '<embed src="../Images/2chk/Authentify.mov" width="400" height="260" autoplay="true" loop="False" controller="true"></embed>'+
           '</object>'));
}

$(function() {
$('#startVideo').mouseenter(
			function(){
				$(this).attr('src', '../Images/2chk/thumb_hover.png');
			})
			
			$('#startVideo').mouseleave(
			function(){
				$(this).attr('src', '../Images/2chk/thumb.png');
			})
			
 });
 
//------------ go to top -----------------
$(function () {
	$(window).scroll(function() {
			if ( $(this).scrollTop() > 500 ){ 
				$('#gototop').fadeIn(500).click(function () {
					if($.browser.safari || $.browser.chrome ) bodyelem = $("body");
							else bodyelem = $("html,body");
								bodyelem.scrollTop(0);
					 			return false; 
				});
			}
			else{ 
				$('#gototop').fadeOut(500);
			}
		});
	
});



