// JavaScript Document - Mala vina (dolje)

$(function() {

$('#bottle_down .bottle_down_a').hover(
	function(){
		$('#div_za_prikaz_vina').html($( this).attr('title'));
	},
	function(){
		$('#div_za_prikaz_vina').html('');
	}
);


$('#bottle_down .bottle_down_a').hover(
	function(){
		$('#div_za_prikaz_vina').html($( this).attr('title'));
		$('#div_za_prikaz_vina').show();
	},
	function(){
		$('#div_za_prikaz_vina').html('');
		$('#div_za_prikaz_vina').hide();
	}
);


}	
);


// JavaScript Document - Mala vina (gore)

$(function() {

$('#bottle_up .bottle_up_a').hover(
	function(){
		$('#div_za_prikaz_vina').html($( this).attr('title'));
	},
	function(){
		$('#div_za_prikaz_vina').html('');
	}
);


$('#bottle_up .bottle_up_a').hover(
	function(){
		$('#div_za_prikaz_vina').html($( this).attr('title'));
		$('#div_za_prikaz_vina').show();
	},
	function(){
		$('#div_za_prikaz_vina').html('');
		$('#div_za_prikaz_vina').hide();
	}
);


}	
);
