// InnerFade
$(document).ready(
	function(){
		$('#headfade').innerfade({
			animationtype: 'fade',
			speed: 4000,
			timeout: 8000,
			type: 'sequence',
			containerheight: '300px'
		});
	});	
// Center Navigation
$(function() {
        var menu_width = $('#nav').css('float', 'left').width();
        $('#nav').css({float : 'none', width : menu_width, margin : '0 auto'});
});// Nav Slide Down$(document).ready(function(){        $('#nav li').hover(function() {                $('ul', this).stop(true, true).hide().slideDown();        },function() {                $('ul', this).slideUp();        });});
