	// site.js - Copyright 2009 Hirbod Media - Ideenkreation
	
	window.addEvent('domready',function() { 
		if($$('.grafik_text_wrapper') != "")
		{
			$$('.breadcrumb').setStyle('display','none');
			$$('#content_wrapper').setStyle('background-color',$$('.grafik_text_wrapper').getStyle('background-color'));
		}
	});

	function fadeAndSetBackground(bckimg)
	{
		if($$('.grafik_headline_big_wrapper') != "")
		{

			var myImages = new Asset.images([bckimg]);

			$$('#content_wrapper').setStyle('background-color',$$('.grafik_headline_big_wrapper').getStyle('background-color'));
			window.setTimeout(
				function()
				{
					
					$('content_wrapper').morph(
					{
						'background-image': 'url('+bckimg+')',
						'border-color': '#ffffff'
					});
					
					$$('.grafik_headline_big_wrapper').fade('out');
					
					$$('.gotoObjectBox').morph(
					{
						'display': 'block',
						'width': '260px'
					});
								
				}, 3000);

		}
	}
	
	Cufon.replace('div.grafik_headline, div.grafik_headline_big, div.grafik_headline_small');
