
$(document).ready(function () {	
	
	$('#nav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(100);

		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
	);

    $('#footerlinks a').each(function() {
        $(this).hover(function() {
            $(this).stop().animate({ opacity: 1.0 }, 500);
        },
       function() {
           $(this).stop().animate({ opacity: 0.5 }, 500);
       });
    });



    $('#footer').each(function() {
        $(this).hover(function() {
            $(this).stop().animate({ opacity: 1.0 }, 500);
        },
       function() {
           $(this).stop().animate({ opacity: 0.5 }, 500);
       });
    });


        $("#checkall").click(function()				
        {
        	var checked_status = this.checked;
        	$(".checkall").each(function()
        	{
        		this.checked = checked_status;
        	});
        });	

		$( "button, input:submit, input:reset").button();
        
});
