/**
 * @script home.js
 * @author jescobar
 *
 */

if(typeof SC == "undefined") var SC = {}; 
 
SC.home = new function() 
{ 
    var self = this;

    this.init = function()
    {
	//check if it's being displayed already
	if (!cp_visible)
	    {
		$("#captcha-area").hide();
		$("#url-form").hover(
				     function(){
					 $("#captcha-area").show();
				     },
				     function(){
					 $("#captcha-area").hide();
				     }
				     );
	    }

    }
} 

$(document).ready(SC.home.init);