// JavaScript Document
/*dojo.addOnLoad(function(){ // Funktion wird erst bereitgestellt, wenn DOM vollständig geladen ist
  dojo.query('.ContentArea .IC_KR_ContentBlock .IC_KR_ContentRight').onclick(  // input-Element wird aktiviert
		function(e){
			var Elem = e.currentTarget;  // momentan durch Event aktiviertes Element in Variable Elem  schreiben
			if (typeof(Elem) == 'undefined'){ 
				Elem = e.srcElement;
			}
			window.location.href = epages.vars.BaseUrl+'?ObjectPath=/Shops/Kidsroom/Categories/Kinderwagen/Jette_Joop';
		}
	);
});*/
