function sh(divId1)
{
    if (document.getElementById(divId1).style.display=="none")
    {
        document.getElementById(divId1).style.display = 'block';
    }
    else
    {
        document.getElementById(divId1).style.display = 'none';
    }
}
function shinline(divId1)
{
    if (document.getElementById(divId1).style.display=="none")
    {
        document.getElementById(divId1).style.display = 'inline';
    }
    else
    {
        document.getElementById(divId1).style.display = 'none';
    }
}
function confirmDelete(msg)
{
    return confirm(msg);
}
$(document).ready(function()
{
	$("ul#ticker01").liScroll();
	
    $("#preloadimages img").lazyload(
    {
        placeholder : "images/spacer.gif", effect : "fadeIn"
    }
    );
    var options1 =
    {
        zoomWidth: 200,
        zoomHeight: 200,
        xOffset: 1,
        yOffset: 0,
        zoomType:'reverse',
        title: false,
        position: "left",
        imageOpacity: "0.6",
        lens:false
    }
    //$(".jqzoom").jqzoom(options1);
    $(".opacity75").fadeTo("slow", 0.50);
    $(".opacity75").hover(function()
    {
        $(this).fadeTo("slow", 1.0);
    }
    ,function()
    {
        $(this).fadeTo("slow", 0.50);
    }
    );
    $(".marked").hover(function()
    {
        $(this).fadeTo("fast", 0.00);
    }
    ,function()
    {
        $(this).fadeTo("slow", 1.00);
    }
    );
    $('textarea.resizable:not(.processed)').TextAreaResizer();
	$('.jqzoom').zoomimage({
	controls: false,
	hideSource: true
});
}
);