$(document).ready(function(){
	var mtoporig;
	$(".emphasis").click(
		function(){
			var mTop = parseInt($("#contact").css("margin-top"));
			if ( mTop == 0) {
//				alert(mtoporig);
				$("#contact").animate({ 'margin-top':+mtoporig }, 'slow');
			} else {
				mtoporig = mTop;
				$("#contact").animate({ 'margin-top':'0' }, 'slow');
			}
		}
    );
    
    $("#deutsch, #knowMore").hover(
	  function () {
	    $("#bubble1").stop(true, true).fadeIn(300);	
	  },
	  function () {
	    $("#bubble1").stop(true, true).fadeOut(300);
	  }
	);
    
    
    
	$('div.zoom a').fancyZoom({scaleImg: true, closeOnClick: true});
	$('#medium_box_link').fancyZoom({width:400, height:300});
	$('#large_box_link').fancyZoom();
	$('#flash_box_link').fancyZoom();
	
	$('#clients ul li img').hover(
			function(){
				$('#'+$(this).attr('alt')).stop(true, true).fadeIn(300);
			},
			function(){
				$('#'+$(this).attr('alt')).stop(true, true).fadeOut(300);
			}
	);

});
