
$(document).ready(function(){	
	
	if ( $.browser.mozilla || $.browser.opera )
	{
		$('div.LeftNavigationItem').corner('tr br 10px');
		$('div.pageWrapper').corner('bottom 25px');
		$('div.ProductCategorieItem').corner('25px');
		$('div.ProductVariationItem').corner('25px');
		$('div.ProductCategoriePainting').corner('25px');
		$('div.ProductCategorieAppendix').corner('25px');
		$('div.glossarItem').corner('25px');
		$('div.newsItem').corner('25px');
		$('div#xScroller').corner('25px');
	}

	if ($.browser.msie )
	{
		if ($.browser.version == "7.0") {
			$('div.LeftNavigationItem').corner('tr br 10px');
			$('div.pageWrapper').corner('bottom 25px');
			$('div.ProductCategorieItem').corner('25px');
			$('div.ProductVariationItem').corner('25px');
			$('div.ProductCategoriePainting').corner('25px');
			$('div.ProductCategorieAppendix').corner('25px');
			$('div.glossarItem').corner('25px');
			$('div.newsItem').corner('25px');
			$('div#xScroller').corner('25px');
		}
		if ($.browser.version == '6.0') {
			$('div.ProductCategorieItem').corner('tl 25px');
			$('div.ProductVariationItem').corner('tl 25px');
			$('div.ProductCategoriePainting').corner('tl 25px');
			$('div.ProductCategorieAppendix').corner('tl 25px');
			$('div.glossarItem').corner('tl 25px');
			$('div.newsItem').corner('tl 25px');			
		}
	}
	
	$('div.topPath').corner('tl bl 10px');

	$('div.LeftNavigationItem').click(function(){
		window.location.href=$(this).children('a').attr('href');
	})
	$('div.ProductCategorieTitle').click(function(){
		window.location.href=$(this).children('a').attr('href');
	})
	
    $('div.LeftNavigationItem').hover(
    	function() {
    		$(this).animate({ borderLeftWidth: '8px' }, { duration: 'normal' });
    		$('.active_node').animate({ borderLeftWidth: '3px' }, { duration: 'fast' });
    	},
    	function() {
    		$(this).animate({ borderLeftWidth: '3px' }, { duration: 'fast' });
    		$('.active_node').animate({ borderLeftWidth: '8px' }, { duration: 'normal' });
    	}
	);
	$('.active_node').css({ borderLeftWidth: '8px', borderLeftColor: '#6CBF47' });
	$('.active_node').unbind();
	
	if ( $('div.pageContent').height() < 400 ) { 
    	$('div.pageContent').height(400);
    }
    
    $('#xZoomerShow img').hide(); 
    $('#xScroller a').hover(
    	function() {
    		var myImg = '#xZoomerShow .' + $(this).attr('class') + ' img';
			$( myImg ).fadeIn(1200);
    	},
    	function() {
    		$('#xZoomerShow img').hide();
    	}
    );

});

$.fn.image = function(src, f){
	return this.each(function(){
        var i = new Image();
                i.src = src;
                i.onload = f;
                this.appendChild(i);
        });
}


flashembed("flashPlayer", 
	{
		src:'/design/web/javascript/flash/FlowPlayerLight.js',
		width: 400, 
		height: 290
	},
	{
		config:
		{  
		    videoFile: '/design/web/javascript/werbeFilm.js', 
		    initialScale: 'scale',
			autoPlay: false,
			showStopButton: true,
			showStartButton: true,
			loop: false
		}
	}
);