  var get_params = get_GET_params();

function get_GET_params() {
   var GET = new Array();
   if(location.search.length > 0) {
      var get_param_str = location.search.substring(1, location.search.length);
      var get_params = get_param_str.split("&");
      for(i = 0; i < get_params.length; i++) {
         var key_value = get_params[i].split("=");
         if(key_value.length == 2) {
            var key = key_value[0];
            var value = key_value[1];
            GET[key] = value;
         }
      }
   }
   return(GET);
}
 
function get_GET_param(key) {
  
   if(get_params[key])
      return(get_params[key]);
   else
      return false;
}

$(document).ready(function() {

	$(".menuItemBody").attr("style", "display:none");
	
	
	var _id = get_GET_param('id');
	if( _id ) {
		$("#"+_id).css("color","#CAC776");
		var cat_id = $("#"+_id).attr('cat');
		if( cat_id ) {
			var selector;
			if( cat_id == 0 ) {
				selector = _id;
				var bodyItem = $("#"+selector).parent().next(".menuItemBody");
				if( bodyItem && bodyItem.children().size() > 0 ) {
					$("#"+selector).parent("div").next(".menuItemBody").attr("style", "display:block");
					//bodyItem.slideDown("fast");
				}
			} else {
				selector = cat_id;
				$("#"+selector).parent("div").next(".menuItemBody").attr("style", "display:block");
				$("#"+selector).css("color","#CAC776");
			}
		}
	}
		
		
//Catalog
//products_id=1141&pagemax
if( _id == 9 ) {

	//<a href="http://www.defner.com/site/catalog/index.php?shopSite=product_info.php&amp;products_id=1344&amp;osCsid=445a33c3fb54625cb7a43b1e95fce753"><table class="productImage" cellpadding="0" cellspacing="0" width="120px"><tbody><tr align="center"><td align="center"><img src="images/products//24300-114.jpg" border="0" alt="Osterbillett" title=" Osterbillett " width="120" height="84"></td></tr></tbody></table></a>
	//var catalogURL = 'catalog/';
	
	var _cPath = get_GET_param('cPath');	
	//var shopSite = get_GET_param('shopSite');
	
	if( _cPath ) {
		$("#"+"cPath_"+_cPath).css("color", "#CAC776");
	}
	
/*	if( shopSite && shopSite != "index.php" ) {
		catalogURL += "" + shopSite + "?" + location.search.substring(1, location.search.length);
	} else {
		catalogURL += "index.php?" + location.search.substring(1, location.search.length);
	}
		*/
	
	var catalogDiv = $("div.catalogContainer");
	//$("div.catalogContainer").load(catalogURL);
}
	
//Bildarchiv
if( _id == 8 ) {
	var _img = get_GET_param('img');
	var _photoUrl = 'photo/de/index.php?';
	if( _img ) {
		_photoUrl = 'photo/de/bild.php?img='+_img+"&";
	}
	
	var _photoCat = get_GET_param('photoCat');
	if( _photoCat ) {
		$("#"+"photoCat_"+_photoCat).css("color", "#CAC776");
		
		_photoUrl = _photoUrl + 'photoCat='+_photoCat+"&";

		var _catu = get_GET_param('catu');
		if( _catu ) {
			_photoUrl = _photoUrl + "catu="+_catu+"&";
		}		
	} 
	
	$("div.photo").load(_photoUrl+"photoCat="+_photoCat);
}
	
//	$(".menuItemHeader").mouseenter( 
//		function(){ 
//			$(this).next(".menuItemBody").slideDown("fast");
//		}
//	);
	

	  
});
