
	$(document).ready(function() {
           $('div#contentTeaserProduct > h1').click(function() {
            $(this).next().slideToggle('fast');
			
			if ($(this).css("background-image").indexOf('button_up') != -1){
				$(this).removeClass('h1OpenHigh');
				$(this).addClass('h1CollapsedHigh');
			}
			else if ($(this).css("background-image").indexOf('button_down') != -1){
				$(this).removeClass('h1CollapsedHigh');
				$(this).addClass('h1OpenHigh');
			}
           });
		  
		   $('div#contentTeaserProduct > h1').hover(
		      function () {
			  	if ($(this).css("background-image").indexOf('button_up') != -1){
					$(this).removeClass('h1Open');
					$(this).addClass('h1OpenHigh');
				}
				else if ($(this).css("background-image").indexOf('button_down') != -1){
					$(this).removeClass('h1Collapsed');
					$(this).addClass('h1CollapsedHigh');
				}
		      }, 
		      function () {
			  	if ($(this).css("background-image").indexOf('button_up') != -1){
					$(this).removeClass('h1OpenHigh');
					$(this).addClass('h1Open');
				}
				else if ($(this).css("background-image").indexOf('button_down') != -1){
			  		$(this).removeClass('h1CollapsedHigh');
					$(this).addClass('h1Collapsed');
				}
		      }
		   );

           $('#contentNavigation #search #searchForm input').click(function () {
             $(this).val('');
           });
         });
	
	
	
	
	
	
	
	
	
	
	
	$(document).ready(function() {
           $('div#contentTeaserProduct2 > h1').click(function() {
            $(this).next().slideToggle('fast');
			
			if ($(this).css("background-image").indexOf('button_up') != -1){
				$(this).removeClass('h1OpenHigh');
				$(this).addClass('h1CollapsedHigh');
			}
			else if ($(this).css("background-image").indexOf('button_down') != -1){
				$(this).removeClass('h1CollapsedHigh');
				$(this).addClass('h1OpenHigh');
			}
           });
		  
		   $('div#contentTeaserProduct2 > h1').hover(
		      function () {
			  	if ($(this).css("background-image").indexOf('button_up') != -1){
					$(this).removeClass('h1Open');
					$(this).addClass('h1OpenHigh');
				}
				else if ($(this).css("background-image").indexOf('button_down') != -1){
					$(this).removeClass('h1Collapsed');
					$(this).addClass('h1CollapsedHigh');
				}
		      }, 
		      function () {
			  	if ($(this).css("background-image").indexOf('button_up') != -1){
					$(this).removeClass('h1OpenHigh');
					$(this).addClass('h1Open');
				}
				else if ($(this).css("background-image").indexOf('button_down') != -1){
			  		$(this).removeClass('h1CollapsedHigh');
					$(this).addClass('h1Collapsed');
				}
		      }
		   );

           $('#contentNavigation #search #searchForm input').click(function () {
             $(this).val('');
           });
         });


