﻿$('a').hover(function() {
	$(this).stop(true, false).animate({
		opacity:.6
	}, {
		duration:500
	})
}, function() {
	$(this).stop(true, false).animate({
		opacity:1
	}, {
		duration:500
	})
});
$(document).ready(function(){
	$('.menu .blog a').qtip({
		content:$('.bloghover'),
		style:{
			background:'#ffffff',
			tip:'topRight',
			color:'#000000',
			border:{width:1,radius:3,color:'#dddddd'},
			width:{max:460,min:460}
		},
		position:{
			corner:{target:"bottomMiddle",tooltip:"topRight"}
		},
		hide:{fixed:true,delay:400}
	});
});



$(document).ready(function(){
	$('.onlineshop a').qtip({
		content:$('.oshover'),
		style:{
			background:'#ffffff',
			tip:'topRight',
			color:'#000000',
			border:{width:1,radius:3,color:'#dddddd'},
			width:{max:600}
		},
		position:{
			corner:{target:"bottomMiddle",tooltip:"topRight"}
		},
		hide:{fixed:true,delay:400}
	});
});

$(document).ready(function(){
	$('.footnewgrid').hover(function(){
		$(".cover", this).fadeTo("slow", 0.7);
	}, function() {
		$(".cover", this).fadeTo("slow", 0);
	});
});


