jQuery.noConflict();     
jQuery(document).ready(function($){
    
    if ( $('#adminbar #toolbar').length ) {
    //    DO NOTHING
        $('#featuredOverlay').css({'display':'none'});
    } 
    
//    else { 
//        
//        $('#featured,#featuredImage,#featuredOverlay,#featuredButtons').css({'display':'none'});
//    
//        $(window).load(function() {
//             $('#featured').fadeIn('slow', function () {
//                 $('#featuredImage,#featuredOverlay').fadeIn('slow', function () {
//                    $('#featuredButtons').fadeIn('slow');
//                });
//            });
//        });
//    }

    $('a.qtip[title]').qtip({ 
        style: { 
            name: 'cream', 
            tip: true
        },
        position: {
              corner: {
             target: 'topleft',
             tooltip: 'bottomLeft'
          }
       } 
       });
   


//nav
if ($.browser.msie) {

$('.topNav li').hover(
  function () {
    $(this).addClass("sfhover");
  },
  function () {
    $(this).removeClass("sfhover");
  }
);
}


    
});// Doc Ready

function DoSearch(){
window.location = "http://ccolympia.publishpath.com/?Key=Search&q=" + document.getElementById("searchTerms").value;
}
