﻿function changeSpot(_item) {
	$('#SpotImage').empty();

	if ($(_item).attr('img') == '') {
		$('#SpotImage').html('<img src="/i/logoYapisal.png" style="margin:91px 0 0 45px;width:auto; height:auto;">');
	}
	else {
		$('#SpotImage').addClass('loading');
		var img = new Image();
		$(img).load(function () {
			$('#SpotImage').removeClass();
			$('#SpotImage').html(img);
		}).attr('src', 'i/haber/' + $(_item).attr('img'));
	}

	with ($('#News ul li a')) {
		css('width', '');
		css('min-width', '');
		css('overflow', '');
		removeClass();
	}
	with ($(_item)) {
		css('min-width', $(_item).parent().css('width'));
		css('width', 'auto');
		css('overflow', 'visible');
		addClass('Active');
	}
}

$(document).ready(function () {
	//load first news image
	changeSpot($('#News ul li a:eq(0)'));


	$('#News ul li a').mouseover(function () {
		changeSpot(this);
	});
}); 

