jQuery(document).ready(function(){
  jQuery('.cert-modal').colorbox({width: "640px", height: "600px"});
  jQuery(document).bind('cbox_complete', function(){
    	jQuery('.prev').attr('href', '#').click(function() {
  			jQuery.colorbox.prev();
		});
        jQuery('.next').attr('href', '#').click(function() {
  			jQuery.colorbox.next();
		});
	});
  jQuery('ul.BearNav-menutop li > div')
		.click(function() {
			location.href = jQuery(this).find('a:first').attr('href'); 
			return false;
  });
  jQuery('ul.BearNav-menutop > li, ul.BearNav-menutop > li .top').hoverIntent(
  		function () {
    		jQuery(this).addClass('over');
  		},
  		function () {
    		jQuery(this).removeClass('over');
  		}
  );		 
});

