$(document).ready(function(){	
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true
	});
});	

function detaljnije(div){
if ($("#"+div+":first").is(":hidden")) {
$("#"+div+"").slideDown("slow");
} else {
$("#"+div+"").slideUp("slow");
}
}

$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});

function get($id){
	$.post('load.php', {id: $id},
		function(output){
			$('#load').html(output).show();
		}
	);
}


