﻿$(document).ready(function()
{
    $(document).pngFix();
    
    //News
    jQuery('#highlights_mycarousel').jcarousel({
        scroll: 1,
        auto: 10,
		animation: 1000,
        easing: 'swing',
        buttonNextHTML: null,
        buttonPrevHTML: null,
        wrap: 'last',
        initCallback: mycarousel_initCallback,
        itemFirstInCallback:  {
        	onBeforeAnimation: mycarousel_itemFirstInCallback
        }    
    });    
});

// open a popup window
function openwin(url,w,h,s) 
{
    var scrl;
	if (s) 
	{ 
	    scrl="scrollbars=yes,"; w = w+16; 
	}
	else 
	{ 
	    scrl="scrollbars=no,"; 
	}

	if (!w) w = 640;
	if (!h) h = 480;

	fenster = window.open(url,"_blank",scrl+"resizable=yes,width="+w+",height="+h+",screenX=50,screenY=50");
	fenster.focus();
}