	$(document).ready(function(){
					   $('.BACK').hover(
										function(){
											$(this).css({														
														'cursor'			:	'pointer'
														});
											},
										function(){
											$(this).css({
														'text-decoration'	:	'none'
														});
											}										
										).click(function(){
													history.go(-1);
													});
					   
					   });
