﻿$(document).ready(function(){
            var chkDt = new Date();
            chkDt.setFullYear(2014,1,1);
            var dt1 = new Date();
            var myDt = new Date;
            myDt.setFullYear(dt1.getFullYear(),dt1.getMonth(),dt1.getDate());
            if(myDt<chkDt)
            {

                $("a[rel='mybox']").colorbox();
            
            $(".textbox").focus(function(){$(this).removeClass("textbox").addClass("textboxfocus");})
            $(".textbox").blur(function(){$(this).removeClass("textboxfocus").addClass("textbox");})
            $(".button").hover(function(){$(this).removeClass("button").addClass("buttonhover");},
            function(){$(this).removeClass("buttonhover").addClass("button");})
            
            $(".ssbox").hover(function(){$(this).removeClass("ssbox").addClass("ssboxhover");},
            function(){$(this).removeClass("ssboxhover").addClass("ssbox");})
            
            
            
            }
        })
    
