var jq = jQuery.noConflict();
function startSpirale(flashCall){
  if(flashCall){
    if(!jq.browser.msie){
      return;
    }
  }
  var el_parentBox  = document.getElementById("rowIntro");
	var el_txtIntro   = document.getElementById("txtIntro");
	var el_txtSpirale = document.getElementById("txtSpirale");
	if (el_txtSpirale.style.display!="block") {
		el_txtIntro.style.display   ="none";
		el_txtSpirale.style.display ="block";
		el_parentBox.className      = "activ";
		jq('#flashHelix').flash(function(){this.TGotoFrame("/spirale", 10);});
		jq('#flashHelixTop').flash(function(){this.TGotoFrame("/mc_gradient", 10);});
	} else {
		el_txtIntro.style.display   ="block";
		el_txtSpirale.style.display ="none";
		el_parentBox.className      = "";
		jq('#flashHelix').flash(function(){this.TGotoFrame("/spirale", 1);});
		jq('#flashHelixTop').flash(function(){this.TGotoFrame("/mc_gradient", 1);});
	}
}


jq(document).ready(
	function () {
	  jq('#flashHelix').html('');
		jq('#flashHelix').flash(
			{
				swf: 'fileadmin/templates/media/helix_bottom.swf',
				params: {
					play: true,
					allowScriptAccess: 'always',
					wmode: 'transparent'
				},
				height: 248,
				width: 136
			}
		);
	jq('#flashHelixTop').flash(
			{
				swf: 'fileadmin/templates/media/helix_top.swf',
				params: {
					play: true,
					allowScriptAccess: 'always',
					wmode: 'transparent'
				},
				height: 248,
				width: 136
			}
		);
		jq('#flashHelixTop').focus();
	}	
);

