//jQuery
(function($) {
	$(document).ready(function() {
		$(function(){
			$('#tooltip').dropShadow({
				left    : 5,
				top     : 5,
				blur    : 1,
				opacity : 0.3,
				color   : "#ff0000",
				swap    : false
			})
		});
		$('table#my-orders-table tbody tr:last-child').each(function(){
			$(this).find('td').addClass('addBorder');
		});
		$('#mainCol .accountDashboard .sub .account-box #my-orders-table tbody tr td').addClass('addBorder');
	});
})(jQuery);

//content loading
function loadXMLDoc(url)
{
	if(window.XMLHttpRequest)
	{
		xmlhttp = new XMLHttpRequest();
	}
	else 
	{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.open("GET", url, false);
	xmlhttp.send(null);
	document.getElementById('contentwindow').innerHTML = xmlhttp.responseText;
}
