jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery("#topbanner").cycle('fade');
});
if (parent.frames.length) top.location.href= document.location;
function GoToURL (url) { if (url>"") top.document.location.replace(url);}

function getajaxdata(div, url)
{
    if (window.XMLHttpRequest)
    {
        xmlhttp=new XMLHttpRequest();
        xmlhttp.open("GET",url,false);
        xmlhttp.send(null);
    }
    else
    {
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
        xmlhttp.open("GET",url,false);
        xmlhttp.send();
    }
    document.getElementById(div).innerHTML=xmlhttp.responseText;
}
