$(document).ready(function() { 
	$(".webshop-thumbnail").css({
		backgroundColor: "#f8f8f8",
		borderColor: "#e8e8e8"
	});
	$(".webshop-thumbnail").hover(function() {
		$(this).stop().animate({
			backgroundColor: "#333",
			borderTopColor: "#222",
			borderRightColor: "#222",
			borderBottomColor: "#222",
			borderLeftColor: "#222"
		}, 300);
	},function() {
		$(this).stop().animate({
			backgroundColor: "#f8f8f8",
			borderTopColor: "#e8e8e8",
			borderRightColor: "#e8e8e8",
			borderBottomColor: "#e8e8e8",
			borderLeftColor: "#e8e8e8"
		}, 300);
	});
});


// Menük
$(document).ready(function() { 
	$(".menu li a").css({
		opacity: 0.6
	});
	
	// Kivéve az aktuális menü
	$(".current_page_item a, .current-cat a").css({
		opacity: 1
	});
	
	$(".menu li a").hover(function() {
		$(this).stop().animate({
			opacity: 1
		}, 300);
	},function() {
		$(this).stop().animate({
			opacity: 0.6
		}, 500);
		
		// Kivéve az aktuális menü
		$(".current_page_item a, .current-cat a").stop().animate({
			opacity: 1
		}, 500);
		
		
	});
});

