/*
--------------------------------------------------------
	jquery.function
	Updated:	12/16/10
********************************************************
*/

$(document).ready(function(){

	$('#fade,#indexfade' ).css( 'visibility', 'visible' );

	$('#nav .drop').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});

	$('#indexfade').cycle({
		fx: 'fade',
		timeout: 5000
	});

	$('#fade').cycle({
		fx: 'fade',
		timeout: 4000
	});
	
/* ! End jquery.function -------------------------- ***/
});
