
$(document).ready(function() {
  var _sub_nav = $('#top_nav li.more')
  var _sub_Lnav = $('#left_nav li.more')
	var rotator_buttons = $('#button_row a')
	
    $('#ModalWindow').jqm({
        ajax:'@href',
        trigger:'a.showmodal'
    });
	
	// show/hide sub nav
  _sub_nav.mouseover(function() {
    $(this).addClass('active');
  });

  _sub_nav.mouseout(function() {
    $(this).removeClass('active');
  });

	// show/hide sub nav
  _sub_Lnav.mouseover(function() {
    $(this).addClass('active');
  });

  _sub_Lnav.mouseout(function() {
    $(this).removeClass('active');
  });

	$('.front_tab').hover(function () {
	        $('.rotator_lower_content').hide();
	        var el = $(this).attr('href');
	        $(el).show();
	    },
	    function() {
	    }
    );
	
	try {
	    $('.pics').cycle({ 
            fx:      'fade', 
            speedIn:  300, 
            speedOut: 300, 
            delay:   9000,
            pause:true
        });
    } catch (e) { }
});

