// JQUERY
$(function(){	
	var animationSpeed = 300;
	
	// meta-content-kleid - HoverInfo
	$('#meta-content-kleid').hover(function () {
		$('#meta-content-kleid-info').show();
		$('#meta-content-kleid-bg').show();
	}, function () {
		$('#meta-content-kleid-info').hide();
		$('#meta-content-kleid-bg').hide();
	});
	
	// meta-content Kleid - Hover Effect
	$('.mg-1').hover(function () {
		$(this).children("img").stop(true, true).animate({
			opacity: 1
		}, animationSpeed);
	}, function () {
		$(this).children("img").stop(true, true).animate({
			opacity: 0.7
		}, animationSpeed);
	});
	$('.mg-2').hover(function () {
		$(this).children("img").stop(true, true).animate({
			opacity: 1
		}, animationSpeed);
	}, function () {
		$(this).children("img").stop(true, true).animate({
			opacity: 0.7
		}, animationSpeed);
	});
	$('.mg-3').hover(function () {
		$(this).children("img").stop(true, true).animate({
			opacity: 1
		}, animationSpeed);
	}, function () {
		$(this).children("img").stop(true, true).animate({
			opacity: 0.7
		}, animationSpeed);
	});
	
	// Fancybox init	
	$("a.wpGallery").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
});
