$(function() {
	$(".expanded").hide();
	$(".item-meniu").hover(function()
	{
		$(this).addClass("selected2");
		$(this).find(".expanded").show(300);
		
	},
	function()
	{
		$(this).removeClass("selected2");
		$(this).find(".expanded").hide(0);
		
	});
});

$(document).ready(function() {
	$('#coin-slider').coinslider({width: 450, delay: 4000, navigation: false, hoverPause: false, height: 161});
});

