$(document).ready(function(){
 $("a[rel=lightbox]").lightBox({fixedNavigation:true });

 $("div:has('.admin')").hover(function(){
   $(this).children(".admin").show("fast");
 },function(){
   $(this).children(".admin").hide("fast");
 });
 
 $('#file_upload').uploadify({
     'uploader'  : './integration/uploadify/uploadify.swf',
     'script'    : './integration/uploadify/uploadify.php',
     'cancelImg' : './integration/uploadify/cancel.png',
     'folder'    : './image/crew/'  + $("#file_upload").attr("rel"),
     'multi'     : true,
     'auto'      : false,
     'fileExt'        : '*.jpg;*.gif;*.png',
     'fileDesc'       : 'Image Files (.JPG, .GIF, .PNG)',
     'onSelectOnce'   : function(event,data) {
         $('#status-message').text(data.filesSelected + ' files have been added to the queue.');
       },
     'onAllComplete'  : function(event,data) {
         $('#status-message').text(data.filesUploaded + ' files uploaded, ' + data.errors + ' errors.');
       }
     
   });

 
});


