﻿var name = "#popup";
var menuYloc = null;

//$(document).ready(function(){

 
//}); 

function closeDiv()
{
	document.getElementById("popup").style.display="none";
}

function href_to(){
	window.open("http://www.commercioin.com");
}

window.onload = function()
{
	var el = document.getElementById("popup");
	if (el)
	el.style.display = "block";
}


function openDiv()
{
	var el = document.getElementById("popup");
	
	if (el)
	el.style.display = "block";

	menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))
	$(window).scroll(function () { 
		offset = menuYloc+$(document).scrollTop()+"px";
		$(name).animate({top:offset},{duration:500,queue:false});
	});
}


setTimeout("openDiv()", 2000);
setTimeout("closeDiv()", 5000);
