// JavaScript Document
$(document).ready(function() {
	if (window.calloutpos !=undefined)
	{
		var pos=calloutpos;
		pos=pos-1;
		$callout=$('.qb');
		$items=$('.content h1, .content h5, .content h4, .content p');
		var ct=0;
		($items).each(function() {
			var child = $(this);
			if (ct==pos)
			{
				$callout.insertBefore($(this));
			}
			ct++;
		 });
	}
});

function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }
 
function openCallOutAdmin(pgID)
{
	var url="/UserControls/CallOuts/CallOutAdmin.aspx?pgID=" + pgID;
	var editWin=window.open(url,"callOutEditWindow","top=50,left=150,width=650,height=300,menubar=0,scrollbars=1,resizable=yes");
	editWin.focus();
}

function openHomeNewsAdmin()
{
    openEditWin("/UserControls/HomeNews/AssignNews.aspx?pgID=408");
}
