/*	
-----------------------------------------------------------------------------
version:	2.0
author:		Remesh Kumar, Mojo Interactive, Dubai, UAE
contact: 	interactive@mojo-me.com,   http://www.mojohq.com/
project:	Lara Scandar Official Website
-----------------------------------------------------------------------------
*/


	//Forms
	function clearText(txtBox)
	{
		if(txtBox.value == "Enter your e-mail")
		txtBox.value="";
	}
	function setText(txtBox, textLabel)
	{
		if(txtBox.value == "")
		txtBox.value=textLabel;
	}
	//Overlay
	function initPlayer() {
		// install flowplayer into flowplayer container
		
		var player = $("overlay-holder");
		
		// setup button action. it will fire our overlay 
		$("a[rel]").overlay({
			
			// use the Apple effect for overlay
			effect: 'apple',		
			expose: "#000",
			
			// when overlay is opened, load our player
			onLoad: function() {
				//player.load();
			},
			
			// when overlay is closed, unload our player
			onClose: function() {
				//player.unload();
				//alert(window.location);
				//window.location.reload();
				var f = document.getElementById('overlay-holder');
				f.src = f.src; 
				//alert(f.src);
			}
		});
	}
			

