$(document).ready(function() {
    $('#mainmenu').supersubs({
	minWidth: 14,
	maxWidth: 25,
	extraWidth: 1
    }).superfish({
	dropShadows: false,
	autoArrows: false
    });
    
    $('.hover_highlight').live("mouseover", function(){
        $(this).addClass('ui-state-hover');
    });

    $('.hover_highlight').live("mouseout", function(){
        $(this).removeClass('ui-state-hover');
    });

    $('#topmenu_ajax_indicator').ajaxStart(function(){
        $(this).fadeIn(200);
    });

    $('#topmenu_ajax_indicator').ajaxStop(function(){
        $(this).fadeOut(300);
    });

    $('.open_with_colorbox').colorbox({
	overlayClose: true,
	initialWidth: 200,
	initialHeight: 100,
	transitionSpeed: 300
    });

});