$(document).ready(function(){  

	/* Font Replacement */
	Cufon.replace('h1');
	Cufon.replace('h2');
	
	/* Dropdown */
	$('#navigation li').hover(function() {
		if ($('.sub-navigation', this).length) {
			$('.sub-navigation', this).slideDown('fast').show();
		}
	    }, function() {
	
		if ($('.sub-navigation', this).length) {
			$('.sub-navigation', this).slideUp('fast');
		}
		
	});

	
});


