// JavaScript Document

(function($){
	
    $(document).ready(function() {		
		$(document).pngFix();
		$('#drop-nav:first').children().hover(
    		function(){
				$(this).addClass('hover');
    		},
    		function(){
        		$(this).removeClass('hover');
    		}
    	);
		if($('#carousel').children().length > 1)
		{
			$('#carousel').cycle({
				fx: 'fade',
				speed: 1000,
				timeout: 5000,
				containerResize: 0,
				cleartype: true,
				cleartypeNoBg: true
			});
		}
		$('.fancy').fancybox();
    });
})(jQuery);
