jQuery(document).ready(function(){

	jQuery('.button').hover( 
    function(){ 
      loc = jQuery(this).attr('id'); 
		jQuery("#" + loc +"_info").fadeIn(150);
	 },
	function(){ 
      loc = jQuery(this).attr('id'); 
		jQuery("#" + loc +"_info").fadeOut(150);
	 });

	/* Activate all media */
	jQuery(".media").media();

	/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});

});



