   	$(document).ready(function(){

	$("#topnav a").click(function(){
		$(this).blur();
		});
	
    $("#topnav li").mouseover(function(){
        $(this).stop().animate({height:'600px'},{queue:false, duration:600, easing: 'easeOutQuad'})
    	});
    

    $("#topnav li").mouseout(function(){
        $(this).stop().animate({height:'23px'},{queue:false, duration:400, easing: 'easeInQuad'})
    	});

	$("#mainnav a").click(function(){
		$(this).blur();
		});
	
    $("#mainnav li").mouseover(function(){
        $(this).stop().animate({height:'600px'},{queue:false, duration:600, easing: 'easeOutQuad'})
    	});
    

    $("#mainnav li").mouseout(function(){
        $(this).stop().animate({height:'26px'},{queue:false, duration:400, easing: 'easeInQuad'})
    	});
	});       
	animatedcollapse.ontoggle=function($, divobj, state){ 
	//fires each time a DIV is expanded/contracted
	//$: Access to jQuery
	//divobj: DOM reference to DIV being expanded/ collapsed. Use "divobj.id" to get its ID
	//state: "block" or "none", depending on state
	}

	animatedcollapse.init();


/*
$(document).ready(function(){
    $("#datepicker").datepicker();
	$('#datepicker').datepicker({ altFormat: 'yyyy-mm-dd' });
//	$('.selector').datepicker({ altField: '#dateOUE' });
	$('.selector').datepicker('option', 'altField', '#dateOUE');	
  });



$(function() {
	var zIndexNumber = 1000000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
*/
