// JavaScript Document

function clearDefault(el) {
	if (el.defaultValue==el.value) {
		el.value = "";
		el.style.color = "black";
		el.style.fontStyle = "normal";
	}
}

function popupAddon(path, name, width, height) {
	window.open(path, name, "width=" + width + ",height=" + height + ",resizable=no,scrollbars=no,toolbar=no,location=no,screenX=100,screenY=100,left=100,top=100");
}

function submitRating(id, value) {
	$.ajax({   
		type: "POST",
		cache: false,
		url: "http://www.theismaili.org/rating.asp",
		data: "id=" + id + "&rating=" + value,
		dataType: "html"
	});
}

var addthis_pub='theismaili';
var addthis_brand = 'TheIsmaili.org';
var addthis_options = 'facebook,twitter,digg,delicious,google,stumbleupon,myspace';
var addthis_hover_delay = 200;
var addthis_test0309 = false;

// make the goto menu work...

var objGoto = null;

function checkHover() {
	if (objGoto) {
		objGoto.find('ul').fadeOut('fast');
	} //if
} //checkHover

$(document).ready(function() {
	$('#goto > li').hover(function() {
		if (objGoto) {
			objGoto.find('ul').fadeOut('fast');
			objGoto = null;
		} //if
		$(this).find('ul').fadeIn('fast');
	}, function() {
		objGoto = $(this);
		setTimeout("checkHover()",400);
	});
});
