$(document).ready(function() {

	$(".main_menu").tabs(".galeus > .box", {
		effect: 'fade',
		fadeOutSpeed: "slow",
		onBeforeClick: function(event) {
			css = ['cms', 'wis', 'nls', 'sms'];
			$('#brand-css').attr('href', '/css/styles_'+css[ event ]+'.css');

            if ( window.location.href.indexOf('#') > 0 )
                anchor = window.location.href.substr(window.location.href.indexOf('#')+1);
            else
                anchor = css[0];

            if (css[ event ] != anchor) {
                window.location.href = '#' + css[ event ];
            }

		}
	});

/*
	//slideshow
    $(".main_menu").tabs(".galeus > .box", {
            effect: 'fade',
            fadeOutSpeed: 500,
            rotate: true
        }).slideshow({autoplay:true, clickable:false, interval: 6000});
    //END slideshow
*/

});


