$(document).ready(function(){
var $ani_time_in = 125;
var $ani_time_out = 125;

var $dropOpen = false;

var $current_slide = 1;
var $slide_timer   = true;

						   
	$('ul.topmenu').superfish();
	$('.valign').vAlign();

	//
	// http://www.professorcloud.com/mainsite/cloud-zoom.htm
	//
//		$("#slider").CloudCarousel(		
//			{			
//				xPos: 170,
//				yPos: 20,
//				buttonLeft: $("#left-but"),
//				buttonRight: $("#right-but"),
//				yRadius: 26,
//				xRadius: 147
//			}
//		);
	$('#mycarousel').jcarousel({
		        vertical: false,
        		scroll: 1,
        		animation: "slow",
        		wrap: "circular"
        		
	    	});
	var options = {
    	newsList: "#news",
		startDelay: 10,
		placeHolder1: " ",
		controls: false,
		stopOnHover: false
	}
	$().newsTicker(options);
	
	$('.suchen').find('input').val('suchen');
	
	
	$('.text-downloads li a.toolt').each(function(){
//		if($(this).parent().is('.thumb'))return;
		
		$(this).mouseover(function(e){
			
			var $thumb = $(this).children('span').text();
			$('#product_overview_tooltip img').attr('src', $thumb);
			$('#product_overview_tooltip').stop(true, true).fadeIn($ani_time_in);
			}).mousemove(function(e){
				var $main_x = $('.container').position().left;
				
				$('#product_overview_tooltip').css('top', e.pageY + 10 );  
        		
				if(e.pageX < ($(document).width() * 0.5))$('#product_overview_tooltip').css('left', e.pageX + 100 );  
				else $('#product_overview_tooltip').css('left', e.pageX - 20 - $main_x - 300 );
			}).mouseout(function(e){
				$('#product_overview_tooltip').stop(true, true).delay(125).fadeOut($ani_time_out);
			});
	});
		
	$('.tx_nhapotheke_Togal').css('display','block');
	$('.tx_nhapotheke_Efasit').css('display','none');
	$('.tx_nhapotheke_INGVÉLA').css('display','none');
	$('.tx_nhapotheke_Ortho-RegiVital').css('display','none');
	$('.tx_nhapotheke_Regivital').css('display','none');
	$('.tx_nhapotheke_flint').css('display','none');
	$('.tx_nhapotheke_EXPOSIS').css('display','none');


	$('.order-menu ul li:contains("Togal")').addClass('active');

	$('.order-menu ul li').click(function() {
	
		$('.tx_nhapotheke_Togal').css('display','none');
		$('.tx_nhapotheke_Efasit').css('display','none');
		$('.tx_nhapotheke_INGVÉLA').css('display','none');
		$('.tx_nhapotheke_Ortho-RegiVital').css('display','none');
		$('.tx_nhapotheke_Regivital').css('display','none');
		$('.tx_nhapotheke_flint').css('display','none');
		$('.tx_nhapotheke_EXPOSIS').css('display','none');
		

		$('.order-menu ul li').removeClass('active');
		$(this).addClass('active');
		
		var litext = $.trim($(this).text());
		
		
		if (litext == 'Togal') {
			$('.tx_nhapotheke_Togal').css('display','block');
		}
		else if (litext == 'Efasit') {
			$('.tx_nhapotheke_Efasit').css('display','block');
		}
		else if (litext == 'INGVÉLA') {
			$('.tx_nhapotheke_INGVÉLA').css('display','block');
		}
		else if (litext == 'Ortho-RegiVital') {
			$('.tx_nhapotheke_Ortho-RegiVital').css('display','block');
		}
		else if (litext == 'Regivital') {
			$('.tx_nhapotheke_Regivital').css('display','block');
		}
		else if (litext == 'flint Med') {
			$('.tx_nhapotheke_flint').css('display','block');
		}
		else if (litext == 'EXPOSIS') {
			$('.tx_nhapotheke_EXPOSIS').css('display','block');
		}
		else {}
	});


/*
	$('#apotheke_form').submit(function() {
		$('#apotheke_form table tbody tr td input').each(function()
		
			alert($(this));
		
		);
		return true;
	});
*/

});

