﻿// Menue ein und ausblendungen

jQuery.noConflict();

jQuery(document).ready(function(){
   jQuery(".showItem1").mouseenter(function(event){
     jQuery("#menuWhite1").fadeOut("fast");
   });
   jQuery(".showItem1").mouseleave(function(event){
     jQuery("#menuWhite1").fadeIn("fast");
   });

   jQuery(".showItem2").mouseenter(function(event){
     jQuery("#menuWhite2").fadeOut("fast");
   });
   jQuery(".showItem2").mouseleave(function(event){
     jQuery("#menuWhite2").fadeIn("fast");
   });

   jQuery(".showItem3").mouseenter(function(event){
     jQuery("#menuWhite3").fadeOut("fast");
   });
   jQuery(".showItem3").mouseleave(function(event){
     jQuery("#menuWhite3").fadeIn("fast");
   });

   jQuery(".showItem4").mouseenter(function(event){
     jQuery("#menuWhite4").fadeOut("fast");
   });
   jQuery(".showItem4").mouseleave(function(event){
     jQuery("#menuWhite4").fadeIn("fast");
   });

   jQuery(".showItem5").mouseenter(function(event){
     jQuery("#menuWhite5").fadeOut("fast");
   });
   jQuery(".showItem5").mouseleave(function(event){
     jQuery("#menuWhite5").fadeIn("fast");
   });

   jQuery(".showItem6").mouseenter(function(event){
     jQuery("#menuWhite6").fadeOut("fast");
   });
   jQuery(".showItem6").mouseleave(function(event){
     jQuery("#menuWhite6").fadeIn("fast");
   });

 });

// Set thickbox loading image
tb_pathToImage = "files/images/loading-thickbox.gif";

function LnC_vHeight_Slv() 
{ 
	if ((document.getElementById('LnC_hCheck').offsetHeight) > 600) { 
		document.getElementById("content").style.height = (document.getElementById('LnC_hCheck').offsetHeight - 319) + 'px'; 
		document.getElementById("scroll").style.height = (document.getElementById('LnC_hCheck').offsetHeight - 323) + 'px'; 
		document.getElementById("footer").style.top = (document.getElementById('LnC_hCheck').offsetHeight - 102) + 'px'; 
	} else { 
		document.getElementById("content").style.height = 281 + 'px'; 
		document.getElementById("scroll").style.height = 277 + 'px'; 
		document.getElementById("footer").style.top = 498 + 'px'; 
	} 

	if (navigator.appName=="Microsoft Internet Explorer") { 
		if (navigator.appVersion.indexOf ("MSIE 6")!=-1) {
			document.getElementById("content").style.height = 281 + 'px';
			document.getElementById("scroll").style.height = 277 + 'px';
			document.getElementById("footer").style.top = 498 + 'px';
		} else {
			// nix ...
		}
	}
}


function LnC_vHeight_SlvShop() 
{ 
	if ((document.getElementById('LnC_hCheck').offsetHeight) > 600) { 
		document.getElementById("content").style.height = (document.getElementById('LnC_hCheck').offsetHeight - 319) + 'px'; 
		document.getElementById("scroll").style.height = (document.getElementById('LnC_hCheck').offsetHeight - 323) + 'px'; 
		document.getElementById("shop").style.height = (document.getElementById('LnC_hCheck').offsetHeight - 323) + 'px'; 
		document.getElementById("footer").style.top = (document.getElementById('LnC_hCheck').offsetHeight - 102) + 'px'; 
	} else { 
		document.getElementById("content").style.height = 281 + 'px'; 
		document.getElementById("scroll").style.height = 277 + 'px'; 
		document.getElementById("shop").style.height = 277 + 'px'; 
		document.getElementById("footer").style.top = 498 + 'px'; 
	} 

	if (navigator.appName=="Microsoft Internet Explorer") { 
		if (navigator.appVersion.indexOf ("MSIE 6")!=-1) {
			document.getElementById("content").style.height = 281 + 'px';
			document.getElementById("scroll").style.height = 277 + 'px';
			document.getElementById("shop").style.height = 277 + 'px';
			document.getElementById("footer").style.top = 498 + 'px';
		} else {
			// nix ...
		}
	}
}


