/**
 * @author matthias wilhelm / mindconnect
 */

jQuery(document).ready(function()
{
	jQuery(".topnav a img").hoverMenu();
	
	if(typeof jQuery.fn.combobox != "undefined")
	{
		jQuery(".dcombo").combobox();
	}
	
});


function openWindow(url,width,height)
{
	var width=(width) ? width : 600;
	var height=(height) ? height : 450;
	
	var x = (( screen.availWidth - width ) / 2);
	var y = (( screen.availHeight - height ) / 2);
	var imgwin=window.open(url,"","width="+width+",height="+height+",status=yes,resizable=yes,scrollbars=yes,left="+x+",top="+y);
	ga(url);
}

function ga(url)
{
	if(typeof pageTracker !="undefined")
	{
		pageTracker._trackPageview (url);
	}
}
