// Background Image Fix
try { document.execCommand("BackgroundImageCache", false, true)} catch(e) {};


/* JQUERY PREVENT CONFLICT */
(function($) {

/*  ------------------------------------------------------------------
    Hover function --------------------------------------------------- */
    $.fn.addHover = function(classOver) {
        var classHover = classOver || "over";
        return this.hover(
            function(){ $(this).addClass(classHover); },
            function(){ $("."+classHover).removeClass(classHover); }
        );
    };
	
	$('.withOver', '#cta').addHover();
})(jQuery);
