﻿$(document).ready(function () {
    //$('.round').corner("5px");
    //$('.roundDark').corner("cc:#303030 5px");
    $(".toggleFooter").click(function () { $(".toggledFooter").slideToggle('fast', function () { }); return false; });

    // Input Elements
    $("input, textarea").addClass("idle");
    $("input, textarea").focus(function () { $(this).addClass("activeField").removeClass("idle"); }).blur(function () {
        $(this).removeClass("activeField").addClass("idle");
    });

});

$('.clickMeWrapper').hide();
$('.box8Click').click(function () {
    $(this).siblings('.clickMeWrapper').slideToggle('fast', function () { });
});

/* Google Analytics */
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try { var pageTracker = _gat._getTracker("UA-3613632-20"); pageTracker._trackPageview(); } catch (err) { }