/* Javascripts for Hotel Hosting */

$(function() {

	// Jinja
	$('.jinja').mouseover(function() {
		$('#jinja').css({'background':'transparent url(/images/kingfisher/startpage/circle0.gif) no-repeat 0 0'});
		$('#bird_jinja_img').attr('src','/images/kingfisher/startpage/kingfisher-red.gif');
		$('#jinja_more').css({'color':'#DD635F'});
	});
	$('.jinja').mouseout(function() {
		$('#jinja').css({'background':'transparent url(/images/kingfisher/startpage/circle1.gif) no-repeat 0 0'});
		$('#bird_jinja_img').attr('src','/images/kingfisher/startpage/kingfisher.gif');
		$('#jinja_more').css({'color':'#008CD7'});
	});
	
	//Kichwamba
	$('.kichwamba').mouseover(function() {
		$('#kichwamba').css({'background':'transparent url(/images/kingfisher/startpage/circle0.gif) no-repeat 0 0'});
		$('#bird_kichwamba_img').attr('src','/images/kingfisher/startpage/kingfisher-red.gif');
		$('#kichwamba_more').css({'color':'#DD635F'});
	});
	$('.kichwamba').mouseout(function() {
		$('#kichwamba').css({'background':'transparent url(/images/kingfisher/startpage/circle2.gif) no-repeat 0 0'});
		$('#bird_kichwamba_img').attr('src','/images/kingfisher/startpage/kingfisher.gif');
		$('#kichwamba_more').css({'color':'#008CD7'});
	});
	
	// Gulu
	$('.gulu').mouseover(function() {
		$('#gulu').css({'background':'transparent url(/images/kingfisher/startpage/circle0.gif) no-repeat 0 0'});
		$('#bird_gulu_img').attr('src','/images/kingfisher/startpage/kingfisher-red.gif');
		$('#gulu_more').css({'color':'#DD635F'});
	});
	$('.gulu').mouseout(function() {
		$('#gulu').css({'background':'transparent url(/images/kingfisher/startpage/circle3.gif) no-repeat 0 0'});
		$('#bird_gulu_img').attr('src','/images/kingfisher/startpage/kingfisher.gif');
		$('#gulu_more').css({'color':'#008CD7'});
	});

});

// EOF
