/**
 * Description for file
 *
 * JS version $version
 *
 * @author      PROMACX AG
 * @copyright   PROMACX AG / Wasserwerkgasse 20 / 3011 CH-Bern
 * @link        www.promacx.ch
 * @version     0.0.1
 */

// PNG Fixxx...

jQuery(window).bind('load', function (){
	// PNG FIX...
	jQuery("#Logo").pngfix({sizingMethod:'scale'});
});
jQuery(document).bind('ready', function (){
	jQuery('#Container img').pngfix({imageFixSrc:'clear.gif'});
	jQuery('#LogoContainer').pngfix({sizingMethod:'scale'});
	jQuery('#Showroom').pngfix({sizingMethod:'scale'});
});

// Init Showroom, if any...

var Showroom;
jQuery(document).bind('ready', function (){
	try {
		Showroom = new pmx.Showroom('Showroom');
		jQuery('#ShowroomAlias').bind('click', function (){
			Showroom.setMode('fullscreen');
		}).css('cursor', 'pointer');
	} catch (e){
		//alert('Showroom Exception: ' + e);	
	}
});/**/
