/*----------------------------------------------------------------*/
// Load HTML from a remote file and inject it into
// the DOM.	Update div#content
/*----------------------------------------------------------------*/
/*function updater(pageURL, divContent) {
	$("#content").load(pageURL).hide().fadeIn();
}
$(document).ready(function(){	
	updater(); // update onload
});
*/
/*----------------------------------------------------------------*/
// Navigation Dropdown
/*----------------------------------------------------------------*/
$(document).ready(function () {	
	$('#nav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(300);
		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
	);
});
/*----------------------------------------------------------------*/
// PNG Transparency Fix for IE6
/*----------------------------------------------------------------*/
$(document).ready(function(){ 
	$(document).pngFix();
});