jQuery(document).ready(function() {
								
	$('ul#ratingtool li img').click(function(){
		var r=$(this).attr('title');									 
		$('input#ratinginput').val(r);
		if(r==1) {
			$('li#grey_1 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_2 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
			$('li#grey_3 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
			$('li#grey_4 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
			$('li#grey_5 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
		}
		else if (r==2) {
			$('li#grey_1 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_2 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_3 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
			$('li#grey_4 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
			$('li#grey_5 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
		}
		else if (r==3) {
			$('li#grey_1 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_2 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_3 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_4 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
			$('li#grey_5 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
		}
		else if (r==4) {
			$('li#grey_1 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_2 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_3 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_4 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_5 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_grey.jpg');	
		}
		else if (r==5) {
			$('li#grey_1 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_2 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_3 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_4 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
			$('li#grey_5 img').attr('src','/themes/ukoug/front-end/gfx/icons/star_gold.jpg');	
		}
		else  alert ('error');
		return false;
		
	});
	

});
