	$(document).ready(function() {			$('.button').each(function() {				$(this).hover(					function() {						status=$(this).find('a').attr('href');					}, //end of first hover function					function() {						status='';					}); // end of hover				$(this).click(function() {					location = $(this).find('a').attr('href');				}); //end of click			});// end of target		}); // end ready()