  // wait for the DOM to be loaded 

  $(document).ready(function() { 

    // bind 'myForm' and provide a simple callback function 

    $('.ajaxKeywords').ajaxForm(function() { 
        alert("Keywords updated."); 
    }) 

    $('.ajaxItems').ajaxForm(function() { 
        alert("Items added."); 
    }) 

    $('.ajaxActions').ajaxForm(function() { 
        alert("Actions have probably been done!."); 
    }) 
    $('.ajaxItemActions').ajaxForm(function() { 
        alert("Item actions have probably been done!."); 
    }) 
         
   // ** do rounded corners      
   $("#set_nav").corner();
           
   // ** Call Fancy Box to display large images
   $(".zoomimagelink").fancybox({
	     	'titlePosition': 'inside'
    });           
   // transition to use specific FancyBox image
   $(".fbimage").fancybox({
	     	'titlePosition': 'inside'
    });           

           
  }); 
        
        
