$(document).ready(function() {
	
	$('#popbox').delay(500).fadeTo('slow', 0.5);
	$('#popbox_content').delay(1000).fadeTo('slow', 1);
	$('#popbox_content .close').delay(1000).fadeTo('slow', 1);
	
	$('#popbox_content .close, #popbox_content, #popbox').click(function(){
		$('#popbox').fadeOut();
		$('#popbox_content').fadeOut();
	});
	
});




//This function is taken from the existing site
function openwin(url,w,h,s,r) {
    var scrl; 
    var resze;
    
    if (s) { scrl="scrollbars=yes,"; w = w+16;} 
    else { scrl="scrollbars=no,"; }
    
    if (r) { resze = "resizable=yes,"; }
    else { resze="resizable=no,"; }
    
    if (!w) w = 350;
    if (!h) h = 270;

    stock = window.open(url,"_blank",scrl+resze+"width="+w+",height="+h+",screenX=200,screenY=50");
    stock.focus();
}

