$(document).ready(function () {	
$("#weather div:first").show();
$("#slider").jCarouselLite({
    btnNext: ".next",
    btnPrev: ".prev",
    auto: 5000,
    speed: 800,
	visible: 1	
});
$(".vertical #newscontent").jCarouselLite({
    btnNext: ".next",
    btnPrev: ".prev",
	auto: 5000,
	visible: 1,
	vertical: true
});
$('#iconset a').click(function() {
		values = $(this).attr('title')						
		document.cookie = "dovizkuru="+values;
		location.reload();
		return false
});
$('#transfer tbody tr').hover(
	  function() {
			$(this).addClass("hover")
	  },function() {
			$(this).removeClass("hover")	
	});

});
function weather(str){
$("#weather div").hide();
$("#weather #weatheritem"+ str).show();
};

