// JavaScript Document
//This JS Script Defines the functions used to AJAX  (Dynamically Load the seperate pieces of the document)

function slideload(pagevar){	
	//Slide up the Current Page-Unload that page fromw the DOM
	$(".content").animate({height: 'hide'},1000, function(){
									  $(".containerMain").load(pagevar, function(){
																		$('.kwicks').kwicks({max: 180, spacing:  5});
														 				$(".content").animate({height: 'show'},1000, function(){											
																				$('a[@rel*=lightbox]').lightBox();});
																						}
																);
											});
}

function browserRedirect(){
	var browser=navigator.appName;
	if (browser != "Netscape"){
				alert("This site is best viewed using Mozilla Firefox, Google Chrome, or Safari.");
				document.write('<meta http-equiv="refresh" content="5;url=http://www.lkaleas.com/html/">');
	}
}