
<!--
$(document).ready(function() {
	
	// Box-Right
    // $(".box1:last-child").addClass("last");
	
	// Box-Animation
	$(".box1").hover(function(){
		$(this).addClass("hover").parents().children().find(".box1").not(this).stop().animate({
			opacity: 0.5
		}, 200);
		//$(this).css("opacity", "1");
	},function(){
		$(this).removeClass("hover").parents().children().find(".box1").stop().animate({
			opacity: 1
		}, 200);
	});


	// Fancybox
	$("a#fancybox").fancybox({
		'titlePosition'	: 'over'
	});


	
});
-->
