$(document).ready(function() {

    if($("a[rel^='prettyPhoto']").length>0) {
         $("a[rel^='prettyPhoto']").prettyPhoto();
    }

    if($("a[rel^='prettyVideo']").length>0) {
         $("a[rel^='prettyVideo']").prettyPhoto({
              
         });
    }
    
    $(".blank").click(function(){
       window.open(this.href);
       return false;
    });
    
    $("ul.sf-menu").superfish(); 
      
});

