var j$ = jQuery.noConflict();
(function(j$) {
    j$(document).ready( function(){

        //switch pictures
        j$("#rotator_links a").click(function() {
            j$("#rotator_links a").removeClass("on");
		    j$(this).addClass("on");
		    return false;
	    });

	    j$("#dnn_ctr403_ModuleContent").cycle({
    	    timeout:7000,
    	    speed:500,
    	    before:onBefore,
    	    pause:true,
    	    next: '#next',
    	    prev: '#prev'
	    });
    	
        function onBefore() {
	        j$('#desc').html(this.alt);
	    }

        var browser = navigator.appName; //get browser name - only care if its "Microsoft Internet Explorer"
        if (browser == "Microsoft Internet Explorer") {
            var b_version = navigator.appVersion; //get browser version info
            var index_value = b_version.indexOf("MSIE");
            var short_b_version = b_version.slice(index_value + 5);
            var version = parseFloat(short_b_version);
            if (version <= "6") {
                if (window.location.pathname == "/") {
                    j$.facebox("Hello,<br /><br />The site may not display properly with the current browser you are using. This site is designed for <a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx' target='_blank'>Internet Explorer version 7+</a>, <a href='http://www.mozilla.com/en-US/firefox/personal.html' target='_blank'>Mozilla Firefox version 3+</a>, or <a href='http://www.apple.com/safari/download/' target='_blank'>Apple Safari version 3+</a>. You can download or upgrade to these browsers for free from the links above.<br /><br />Thanks!");
                }
            }
        }
        
    });
})(jQuery);
