	$(document).ready(function(){		//Botones   		$("#main_buttons .montse-hover").click(function(){			window.location.href= 'montse-presa.php';		});		$("#main_buttons .isabel-hover").click(function(){			window.location.href= 'isabel-hidalgo.php';		});		$("#main_buttons .beth-hover").click(function(){			window.location.href= 'beth-mcgowan.php';		});		$("#main_buttons .monta-hover").click(function(){			window.location.href= 'informacion-basica.php';		});			$('#main_buttons .beth').hover(			function(){				$('#main_buttons .beth-hover').fadeIn("fast");			},			function(){				$('#main_buttons .beth-hover').fadeOut("slow");			}			);		$('#main_buttons .isabel').hover(			function(){				$('#main_buttons .isabel-hover').fadeIn("fast");			},			function(){				$('#main_buttons .isabel-hover').fadeOut("slow");			}			);		$('#main_buttons .montse').hover(			function(){				$('#main_buttons .montse-hover').fadeIn("fast");			},			function(){				$('#main_buttons .montse-hover').fadeOut("slow");			}			);		$('#main_buttons .monta').hover(			function(){				$('#main_buttons .monta-hover').fadeIn("fast");			},			function(){				$('#main_buttons .monta-hover').fadeOut("slow");			}			);	});	
