/* begin Page */



/* Created by Artisteer v3.0.0.39952 */

// css hacks

(function($) {

    // fix ie blinking

    var m = document.uniqueID && document.compatMode && !window.XMLHttpRequest && document.execCommand;

    try { if (!!m) { m('BackgroundImageCache', false, true); } }

    catch (oh) { };

    // css helper

    var data = [

        {str:navigator.userAgent,sub:'Chrome',ver:'Chrome',name:'chrome'},

        {str:navigator.vendor,sub:'Apple',ver:'Version',name:'safari'},

        {prop:window.opera,ver:'Opera',name:'opera'},

        {str:navigator.userAgent,sub:'Firefox',ver:'Firefox',name:'firefox'},

        {str:navigator.userAgent,sub:'MSIE',ver:'MSIE',name:'ie'}];

    for (var n=0;n<data.length;n++)	{

        if ((data[n].str && (data[n].str.indexOf(data[n].sub) != -1)) || data[n].prop) {

            var v = function(s){var i=s.indexOf(data[n].ver);return (i!=-1)?parseInt(s.substring(i+data[n].ver.length+1)):'';};

            $('html').addClass(data[n].name+' '+data[n].name+v(navigator.userAgent) || v(navigator.appVersion)); break;			

        }

    }

})(jQuery);



var _artStyleUrlCached = null;

function artGetStyleUrl() {

    if (null == _artStyleUrlCached) {

        var ns;

        _artStyleUrlCached = '';

        ns = jQuery('link');

        for (var i = 0; i < ns.length; i++) {

            var l = ns[i].href;

            if (l && /style\.ie6\.css(\?.*)?$/.test(l))

                return _artStyleUrlCached = l.replace(/style\.ie6\.css(\?.*)?$/, '');

        }

        ns = jQuery('style');

        for (var i = 0; i < ns.length; i++) {

            var matches = new RegExp('import\\s+"([^"]+\\/)style\\.ie6\\.css"').exec(ns[i].html());

            if (null != matches && matches.length > 0)

                return _artStyleUrlCached = matches[1];

        }

    }

    return _artStyleUrlCached;

}



function artFixPNG(element) {

    if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 7) {

		var src;

		if (element.tagName == 'IMG') {

			if (/\.png$/.test(element.src)) {

				src = element.src;

				element.src = artGetStyleUrl() + 'images/spacer.gif';

			}

		}

		else {

			src = element.currentStyle.backgroundImage.match(/url\("(.+\.png)"\)/i);

			if (src) {

				src = src[1];

				element.runtimeStyle.backgroundImage = 'none';

			}

		}

		if (src) element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "')";

	}

}



jQuery(function() {

    jQuery.each(jQuery('ul.ace-hmenu>li:not(.ace-hmenu-li-separator),ul.ace-vmenu>li:not(.ace-vmenu-separator)'), function (i, val) {

        var l = jQuery(val); var s = l.children('span'); if (s.length == 0) return;

        var t = l.find('span.t').last(); l.children('a').append(t.html(t.text()));

        s.remove();

    });

});/* end Page */



/* begin Box, Sheet */



function artFluidSheetComputedWidth(percent, minval, maxval) {

    percent = parseInt(percent);

    var val = document.body.clientWidth / 100 * percent;

    return val < minval ? minval + 'px' : val > maxval ? maxval + 'px' : percent + '%';

}/* end Box, Sheet */



/* begin Menu */

jQuery(function () {

    jQuery('ul.ace-hmenu a[href=#]').click(function () { return false; });

    if (!jQuery.browser.msie || parseInt(jQuery.browser.version) > 6) return;

    jQuery.each(jQuery('ul.ace-hmenu li'), function(i, val) {

        val.j = jQuery(val);

        val.UL = val.j.children('ul:first');

        if (val.UL.length == 0) return;

        val.A = val.j.children('a:first');

        this.onmouseenter = function() {

            this.j.addClass('ace-hmenuhover');

            this.UL.addClass('ace-hmenuhoverUL');

            this.A.addClass('ace-hmenuhoverA');

        };

        this.onmouseleave = function() {

            this.j.removeClass('ace-hmenuhover');

            this.UL.removeClass('ace-hmenuhoverUL');

            this.A.removeClass('ace-hmenuhoverA');

        };

    });

});

/* end Menu */



/* begin Layout */

jQuery(function () {

     var c = jQuery('div.ace-content');

    if (c.length !== 1) return;

    var s = c.parent().children('.ace-layout-cell:not(.ace-content)');



    if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 8) {



        jQuery(window).bind('resize', function () {

            var w = 0;

            c.hide();

            s.each(function () { w += this.clientWidth; });

            c.w = c.parent().width(); c.css('width', c.w - w + 'px');

            c.show();

        })



        var r = jQuery('div.ace-content-layout-row').each(function () {

            this.c = jQuery(this).children('.ace-layout-cell:not(.ace-content)');

        });



        jQuery(window).bind('resize', function () {

            r.each(function () {

                if (this.h == this.clientHeight) return;

                this.c.css('height', 'auto');

                this.h = this.clientHeight;

                this.c.css('height', this.h + 'px');

            });

        });

    }



    var g = jQuery('.ace-layout-glare-image');

    jQuery(window).bind('resize', function () {

        g.each(function () {

            var i = jQuery(this);

            i.css('height', i.parents('.ace-layout-cell').height() + 'px');

        });

    });



    jQuery(window).trigger('resize');

});/* end Layout */



/* begin Button */

function artButtonSetup(className) {

    jQuery.each(jQuery("a." + className + ", button." + className + ", input." + className), function (i, val) {

        var b = jQuery(val);

        if (!b.parent().hasClass('ace-button-wrapper')) {

            if (b.is('input')) b.val(b.val().replace(/^\s*/, '')).css('zoom', '1');

            if (!b.hasClass('ace-button')) b.addClass('ace-button');

            jQuery("<span class='ace-button-wrapper'><span class='ace-button-l'> </span><span class='ace-button-r'> </span></span>").insertBefore(b).append(b);

            if (b.hasClass('active')) b.parent().addClass('active');

        }

        b.mouseover(function () { jQuery(this).parent().addClass("hover"); });

        b.mouseout(function () { var b = jQuery(this); b.parent().removeClass("hover"); if (!b.hasClass('active')) b.parent().removeClass('active'); });

        b.mousedown(function () { var b = jQuery(this); b.parent().removeClass("hover"); if (!b.hasClass('active')) b.parent().addClass('active'); });

        b.mouseup(function () { var b = jQuery(this); if (!b.hasClass('active')) b.parent().removeClass('active'); });

    });

}

jQuery(function() { artButtonSetup("ace-button"); });



/* end Button */



/* begin VMenu */

jQuery(function () {

    jQuery('ul.ace-vmenu a[href=#]').click(function () {

        jQuery(this).parents('.ace-vmenu').find('.active').removeClass('active');

        jQuery(this).addClass('active').next().addClass('active');

        jQuery(this).parents('ul.ace-vmenu ul').addClass('active').prev().addClass('active');

        jQuery(this).parents('ul.ace-vmenu li').addClass('active');

        return false;

    });

});/* end VMenu */







jQuery(function () {

    artButtonSetup("button");

});


