$(document).ready(function() { 
   $('ul.menu').superfish({ 
       delay:       1000,                            // one second delay on mouseout 
       animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
       speed:       'slow',                          // faster animation speed 
       autoArrows:  false,                           // disable generation of arrow mark-up 
       dropShadows: false                            // disable drop shadows 
   }); 
});

$(document).ready(function() { 
    $("#tabs").tabs("div.mrp", {event:'mouseover',effect: 'fade'});
});
$(document).ready(function(){
   $(document).pngFix();
});

$(document).ready(function() { 
   $.localScroll();
});

jQuery.fn.extend({
    highlight: function(search, insensitive, hls_class){
      var regex = new RegExp("(<[^>]*>)|(\\b"+ search.replace(/([-.*+?^${}()|[\]\/\\])/g,"\\$1") +")", insensitive ? "ig" : "g");
      return this.html(this.html().replace(regex, function(a, b, c){
        return (a.charAt(0) == "<") ? a : "<strong class=\""+ hls_class +"\">" + c + "</strong>";
      }));
    }
});
jQuery(document).ready(function($){
    if(typeof(hls_query) != 'undefined'){
      $(".search").highlight(hls_query, 1, "hls");
    }
});

$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
});
