li_width = 168;
pos_left = 0;
max_pos_left = 0;

$(document).ready(function () 
{
	
	// Suche
	$('#dd_search_field').val('Ihr Suchbegriff');
	
	$('#dd_search_field').click(function () 
	{
		wert = $('#dd_search_field').val();
		if(wert == 'Ihr Suchbegriff')
		{
			$('#dd_search_field').val('');
		}
	});
	
	// Highlight Slider
	li_childs = $('.highlight_slider ul').children();
	anz_li_childs = li_childs.length;
	ul_width = li_width * anz_li_childs;
	max_pos_left = -(ul_width - ( 3 * li_width));
	
	$('.highlight_slider ul').width(ul_width);
	$('.dd_high_prev').click(function () 
	{
		prevButton();
	});
	$('.dd_high_next').click(function () 
	{
		nextButton();
	});
	

	
	// Bestellhistorie
	$('#dd_bestellhistorie .dd_histo_title:first .dd_order_cross').addClass('active');
	$('#dd_bestellhistorie .dd_histo_items:not(:first)').hide();
	
	$('#dd_bestellhistorie .dd_histo_title').click(function () 
	{
		$(this).next("div").slideToggle('fast');
		$('p:eq(0)', this).toggleClass('active');
	});
});

function prevButton()
{
	if( pos_left == 0)
	{
		
	}
	else
	{
		pos_left += li_width;
		$('.highlight_slider ul').animate(
				{left: (pos_left+"px")},
				1000
		);
	}
}

function nextButton()
{
	if( pos_left <= max_pos_left)
	{

	}
	else
		pos_left -= li_width;
		$('.highlight_slider ul').animate(
				{left: (pos_left+"px")},
				1000
		);
	{
	}
}