/*
function imgMouseOverEvents(outString, overString, selector) {
$$(selector).each(function(image) {
image = $(image);

if (image.hasClass('active'))
{
// set active
if ($type(image.src)) image.src = image.src.replace(outString, overString);
}		
			
if ($type(image.src)) {
if (image.src.indexOf(outString) > 0) {
image.addEvent('mouseenter',function(){
image.src = image.src.replace(outString, overString);
}).addEvent('mouseleave', function(){
image.src = image.src.replace(overString, outString);
});
}
}
});
};
*/

// ondomready
window.addEvent('domready', function() {
    //	imgMouseOverEvents('_off', '_on', 'div#nav_main ul img'); // not used, build dynamically by MainNav-Control

    SqueezeBox.initialize({ size: { x: 350, y: 400} });

    SqueezeBox.assign($$('a.boxed'), {
        parse: 'rel'
    });


});
// end ondomready
