﻿$(function () {
    //tabs
    // $("#tabs > ul").tabs();

    //weather show/hide
    $("#top .wrapper a.weather").toggle(
		function (e) {
		    $("a.weather").addClass('selected');
		    $(".widget").slideDown();
		    e.preventDefault();
		},
		function (e) {
		    $("a.weather").removeClass('selected');
		    $(".widget").slideUp();
		    e.preventDefault();
		}
	);

    $(".closeme").click(function () {
        $(this).slideUp();
    });



    // alert(new Date(0).toUTCString() )
    $("form").jqTransform();
    
});

// for anything slider
function formatText(index, panel) { return index + ""; }


