﻿$(function () {
    $.ajaxSetup({
        // Disable caching of AJAX responses
        cache: false
    });

    $(".boxevent .boxbutton").click(function () {
        $(this).parent().find(".boxbody").slideToggle(1000);
    })

    $('#page_effect').fadeIn(1500, function () {
        // this function add antialiasing for page
        if (jQuery.browser.msie) {
            $(this).get(0).style.removeAttribute('filter');
        }
    });

    $("#membershipicon").hover(function () {
        $(this).stop().animate({left:2},1000);
    }, function () {
        $(this).stop().animate({ left: -75 },2000);
    });



});





