jQuery(function() {
    // initialize content
    cargarSliderControl("ItemsDivSlider", "/noticiasxhtmlprincipal/noticias.xml");

    // initialize scrollable with mousewheel support
    jQuery(".scrollable").scrollable({ circular: true, vertical: true, mousewheel: true }).autoscroll({ interval: 5000 });

});

var sliderXslFile = "/noticiasxhtmlprincipal/noticias.xsl";
function cargarSliderControl(control, xmlFile) {
    xml = loadXMLDoc(xmlFile);
    xsl = loadXMLDoc(sliderXslFile);
    transform(xml, xsl, control);
}
