// JavaScript Document

/* <![CDATA[ */
$(function() {
    $('#pause').click(function() { $('#slide').cycle('pause'); return false; });
    $('#play').click(function() { $('#slide').cycle('resume'); return false; });
    
    $('#banner').hover(
        function() { $('#controls').fadeIn(); },
        function() { $('#controls').fadeOut(); }
    );
    
    $('#slide').cycle({
        fx:     'fade',
        timeout: 8000,
        next:   '#next',
        prev:   '#prev',
		cleartype: true, cleartypeNoBg: true
    });
});
/* ]]> */
/*Menu*/
		$(function() {
			$("#menu li a.sub").hover(function(){ 
				$(this).parent().find("div.holder").slideDown('800');
				$(this).parent().hover(function() {
				}, function() {
					$(this).parent().find("div.holder").slideUp('100');
				})
			});
		});
