        hs.graphicsDir = '/tsign/library/js/highslide/4.1.6/graphics/';
        hs.wrapperClassName   = 'wide-border';
//      hs.wrapperClassName = 'no-move';
        hs.dimmingOpacity     = '0.70';
        hs.showCredits        = false;
        hs.align              = 'center';
        hs.marginTop          = 30;
        hs.allowSizeReduction = true;
//      hs.outlineType     = 'rounded-white';
        hs.transitions        = ['expand', 'crossfade'];

//      hs.dimmingDuration = 150;
        hs.dimmingGeckoFix = true;
/*
        // Closebutton
        hs.registerOverlay({
            html: '<div class="closebutton" onclick="return hs.close(this)" title="Close"></div>',
            position: 'top right',
            useOnHtml: true,
            fade: 2 // fading the semi-transparent overlay looks bad in IE
        });
*/
        
// tabs on info page
$(document).ready(function() {
	// form replacement
	Custom.init();
    
	$(function () {
    	var tabContainers = $('div.tabs > div.tabbox');
 	   tabContainers.hide().filter(':first').show();
 	   $('div.tabs div.tabnav a').click(function () {
 		   tabContainers.hide();
 		   tabContainers.filter(this.hash).show();
 		   $('div.tabs div.tabnav a').parent().removeClass('selected');
 		   $(this).parent().addClass('selected');
 		   return false;
 	   }).filter(':first').click();
	});
    
    
    /*
    $('#regioncheckbox .checkbox').click(function(){
    	var pos = $(this).css('backgroundPosition');
    	console.log(pos);
    	if(pos == "0pt -36px") {
    		$('.smq .checkbox').css('backgroundPosition', '0pt -36px');
    	} else {
    		$('.smq .checkbox').css('backgroundPosition', '0pt 0pt');
    	}
    });
    
     $('.smq .checkbox').each(function(){
    	$(this).click(function(){
        	var pos = $(this).css('backgroundPosition');
        });
    });
    */
    
});

