  // 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!."); 
    }) 
         
   // ** do rounded corners      
   $("#rightdiv").corner();
           
   // ** Call Fancy Box to display large images
   $(".zoomimagelink").fancybox({
	     	'titlePosition': 'inside'
    });           

           
  }); 
        
        
