// When the page is ready
$(document).ready(function(){

// perform JavaScript after the document is scriptable. 
$(function() { 
    // setup ul.tabs to work as tabs for each div directly under div.panes 
    $("ul.tabs").tabs("div.images > div", {event:'mouseover'}); 
});


});
