$(document).ready(function() {
	
    // SLIDE VIEW
    // ==========================================================
	$('a').click(function() {
		$('#content').show();
	});

    // MENU
    // ==========================================================
    $("li.mega").hover(
        function () {
            $(this).addClass("hovering");
        },
        function () {
            $(this).removeClass("hovering");
        }
    );

    // ALTERNATE ROWS
    // ==========================================================
    $(".stripeMe tr").mouseover(function() {
        $(this).addClass("over");
    });
    $(".stripeMe tr").mouseout(function() {
        $(this).removeClass("over");
    });

    $(".stripeMe tr:even").addClass("alt");


    // AUTOCOMPLETE="OFF"
    // ==========================================================

    $(function() {
        $("input").attr("autocomplete","off");
    });


    // JQuery UI DatePicker
    // ==========================================================
    
	$(function() {
		var myDate = $('#datepicker').val();
		$('#datepicker').datepicker({
			gotoCurrent: true,
			dateFormat: 'mm/dd/yy',
			altField: '#actualdate',
			altFormat: 'yy-mm-dd'
		});
		/*
		var myDate3 = $('#datepicker').datepicker("getDate");
		$('#datepicker').datepicker("setDate", myDate3);
		*/
	})

});
