	// JavaScript Document

// Using multiple unit types within one animation.
//alert ('hallo');

// Using multiple unit types within one animation.



 $.noConflict();
  jQuery(document).ready(function($) {
  
  
$(".trigger").toggle(
  function(){
    $("#facequery").animate({
  	  left: '+=550'
	  //background-image: 'url(fileadmin/img/pfeil.png)'
	  
    }, 750 );
	 $('#facequery').css("z-index", "100");
  },

  
  function(){
    $("#facequery").animate({
  	  left: '-=550'
	  
    }, 750 );

  }

);

});


jQuery('.pfeil').toggle(

	function () {
		jQuery("#wetterBox").animate({
		height:'280'	
		}, 750 );
		
		jQuery(".pfeil").animate({
		bottom:'+=250'	
		}, 750 );
		
	},
	
	function () {
		jQuery("#wetterBox").animate({
		height:'0'	
		}, 750 );
		
		jQuery(".pfeil").animate({
		bottom:'-=250'	
		}, 750 );
		
	}

)