<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

	
        <!--TITLE-->
        <title>Comer en Barcelona - Menu de la semana | Hotel Gallery Barcelona</title>
        
        <!-- METATAGS -->
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    
        <meta name="robots" content="all" />
        <meta name="revisit-after" content="7 days" />
        <meta http-equiv="expires" content="0" />
        <meta http-equiv="cache-control" content="public" />
        <meta http-equiv="pragma" content="no-cache" /> 
        <meta http-equiv="content-language" content="es" />
        <meta name="title" content="Comer en Barcelona - Menu de la semana | Hotel Gallery Barcelona" />
        <meta name="description" content="Nuestros menús de mediodía y noche son una buena opción para comer en Barcelona a precios muy asequibles. El Menú cambia cada semana y ofrece seis primeros y seis segundos platos a elegir, todos ellos elaborados con productos de temporada y una gran variedad de postres como pasteles, helados o fruta natural." />
        <meta name="author" content="Gallery Hotel" />
        <meta name="date" content="2010-10-10T09:00:00+00:00" />
        <meta name="identifier-url" content="http://www.galleryhotel.com/" />
        <meta name="keywords" lang="es" content="comer en Barcelona, cenar en barcelona comer en barcelona centro, cenar en barcelona centro, ofertas comer en barcelona, ofertas cenar en barcelona, comer con encanto barcelona, cenar con encanto barcelona, comer centrico en barcelona, comer sano en barcelona" />
        
        <meta property="og:title" content="Comer en Barcelona - Menu de la semana | Hotel Gallery Barcelona" /> 
        <meta property="og:description" content="Nuestros menús de mediodía y noche son una buena opción para comer en Barcelona a precios muy asequibles. El Menú cambia cada semana y ofrece seis primeros y seis segundos platos a elegir, todos ellos elaborados con productos de temporada y una gran variedad de postres como pasteles, helados o fruta natural." /> 
        
    
    
    <!--FAVICON-->
    <link rel="shortcut icon" href="img/favicon.ico" />
    
    <!--CSS-->
    <link href="includes/css/gallery-hotel.min.css" rel="stylesheet" type="text/css" />
    
    <!-- FEED -->
    <link rel="alternate" type="application/rss+xml" title="Gallery Hotel RSS Feed - Not&iacute;cias" href="http://www.galleryhotel.com/es/rss-feeds/noticias" />
    <link rel="alternate" type="application/rss+xml" title="Gallery Hotel RSS Feed - Actividades Gastron&oacute;micas" href="http://www.galleryhotel.com/es/rss-feeds/calendario-gastronomia" />
    <link rel="alternate" type="application/rss+xml" title="Gallery Hotel RSS Feed - Ofertas" href="http://www.galleryhotel.com/es/rss-feeds/ofertas-gallery-barcelona" />
    
    <meta name="google-site-verification" content="SXcxiT1AH-wmHu4bz7IM84c32g30-R5r-btqmA-4hxM" />
    
    <script type="text/javascript">
/* <![CDATA[ */
	if(window.parent.length != 0)  {
		 window.top.location.replace(document.location.href);
	}
/* ]]> */
</script>

<!-- JQUERY -->
<script src="http://www.galleryhotel.com/includes/js/jquery-1.4.2.min.js" type="text/javascript"></script>

<!-- SUPERFISH -->
<script type="text/javascript">
/* <![CDATA[ */
	$(document).ready(function(){
		$('ul.sf-menu').superfish();
	});
/* ]]> */
</script>

<!-- DATEPICKER -->
<script src="http://www.galleryhotel.com/includes/js/calendar_language/ui.datepicker-es.js" type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */

	$(document).ready(function() {
		$("#CheckInDate").datepicker($.extend({minDate: 0}, $.datepicker.regional['es']));
		$("#CheckOutDate").datepicker($.extend({minDate: 1}, $.datepicker.regional['es']));
		$("#Date").datepicker($.datepicker.regional['es']);
	});
	
	function UpdateCheckOutDate(){
		if(parseInt(document.getElementById('Nights').value) < 1) document.getElementById('Nights').value = 1;
		utcCheckInDateTab = document.getElementById('CheckInDate').value.split("/");
		utcCheckOutDateTab = document.getElementById('CheckOutDate').value.split("/");
		utcCheckInDate = utcCheckInDateTab[1] + "/" + utcCheckInDateTab[0] + "/" + utcCheckInDateTab[2];
		utcCheckOutDate = utcCheckOutDateTab[1] + "/" + utcCheckOutDateTab[0] + "/" + utcCheckOutDateTab[2];
		utcDateDiff = dateDiff("d", utcCheckInDate, utcCheckOutDate, 2);
		if (utcDateDiff > 0) {
			utcNewCheckOutDate = dateAdd("d", parseInt(document.getElementById('Nights').value), utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
			$("#CheckOutDate").datepicker( "option", "minDate", dateAdd("d", 1, utcCheckInDate) );
		} else {
			utcNewCheckOutDate = dateAdd("d", 1, utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
			$("#CheckOutDate").datepicker( "option", "minDate", dateAdd("d", 1, utcCheckInDate) );
			document.getElementById('Nights').value = "1";
		}
	}
	
	function UpdateNights(){
		utcCheckInDateTab = document.getElementById('CheckInDate').value.split("/");
		utcCheckOutDateTab = document.getElementById('CheckOutDate').value.split("/");
		utcCheckInDate = utcCheckInDateTab[1] + "/" + utcCheckInDateTab[0] + "/" + utcCheckInDateTab[2];
		utcCheckOutDate = utcCheckOutDateTab[1] + "/" + utcCheckOutDateTab[0] + "/" + utcCheckOutDateTab[2];
		utcDateDiff = dateDiff("d", utcCheckInDate, utcCheckOutDate, 2);
		if (utcDateDiff > 0) {
			document.getElementById('Nights').value = utcDateDiff; 
		} else { 
			document.getElementById('Nights').value = 1;
			utcNewCheckOutDate = dateAdd("d", 1, utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
		}
			
	}
	
	<!-- DATE -->
	function IsDate(p_Expression){
		return !isNaN(new Date(p_Expression));		// <-- review further
	}
	
	function CDate(p_Date){
		if(IsDate(p_Date)){ return new Date(p_Date); }
	
		var strTry = p_Date.replace(/\-/g, '/').replace(/\./g, '/').replace(/ /g, '/');	// fix separators
		strTry = strTry.replace(/pm$/i, " pm").replace(/am$/i, " am");	// and meridian spacing
		if(IsDate(strTry)){ return new Date(strTry); }
	
		var strTryYear = strTry + '/' + new Date().getFullYear();	// append year
		if(IsDate(strTryYear)){ return new Date(strTryYear); }
		
	
		if(strTry.indexOf(":")){	// if appears to have time
			var strTryYear2 = strTry.replace(/ /, '/' + new Date().getFullYear() + ' ');	// insert year
			if(IsDate(strTryYear2)){ return new Date(strTryYear2); }
	
			var strTryDate = new Date().toDateString() + ' ' + p_Date;	// pre-pend current date
			if(IsDate(strTryDate)){ return new Date(strTryDate); }
		}
		
		return false;	// double as looser IsDate
		//throw("Error #13 - Type mismatch");	// or is this better? 
	}
	
	function dateAdd(p_Interval, p_Number, p_Date){
		if(!CDate(p_Date)){	return "invalid date: '" + p_Date + "'";	}
		if(isNaN(p_Number)){	return "invalid number: '" + p_Number + "'";	}	
		p_Number = new Number(p_Number);
		var dt = CDate(p_Date);
		switch(p_Interval.toLowerCase()){
			case "yyyy": {
				dt.setFullYear(dt.getFullYear() + p_Number);
				break;
			}
			case "q": {
				dt.setMonth(dt.getMonth() + (p_Number*3));
				break;
			}
			case "m": {
				dt.setMonth(dt.getMonth() + p_Number);
				break;
			}
			case "y":			// day of year
			case "d":			// day
			case "w": {		// weekday
				dt.setDate(dt.getDate() + p_Number);
				break;
			}
			case "ww": {	// week of year
				dt.setDate(dt.getDate() + (p_Number*7));
				break;
			}
			case "h": {
				dt.setHours(dt.getHours() + p_Number);
				break;
			}
			case "n": {		// minute
				dt.setMinutes(dt.getMinutes() + p_Number);
				break;
			}
			case "s": {
				dt.setSeconds(dt.getSeconds() + p_Number);
				break;
			}
			case "ms": {	// JS extension
				dt.setMilliseconds(dt.getMilliseconds() + p_Number);
				break;
			}
			default: {
				return "invalid interval: '" + p_Interval + "'";
			}
		}
		return dt;
	}
	
	function dateDiff(p_Interval, p_Date1, p_Date2, p_FirstDayOfWeek){
		if(!CDate(p_Date1)){	return "invalid date: '" + p_Date1 + "'";	}
		if(!CDate(p_Date2)){	return "invalid date: '" + p_Date2 + "'";	}
		p_FirstDayOfWeek = (isNaN(p_FirstDayOfWeek) || p_FirstDayOfWeek==0) ? vbSunday : parseInt(p_FirstDayOfWeek);	// set default & cast
	
		var dt1 = CDate(p_Date1);
		var dt2 = CDate(p_Date2);
	
		// correct DST-affected intervals ("d" & bigger)
		if("h,n,s,ms".indexOf(p_Interval.toLowerCase())==-1){
			if(p_Date1.toString().indexOf(":") ==-1){ dt1.setUTCHours(0,0,0,0) };	// no time, assume 12am
			if(p_Date2.toString().indexOf(":") ==-1){ dt2.setUTCHours(0,0,0,0) };	// no time, assume 12am
		}
		// get ms between UTC dates and make into "difference" date
		var iDiffMS = dt2.valueOf() - dt1.valueOf();
		var dtDiff = new Date(iDiffMS);
	
		// calc various diffs
		var nYears  = dt2.getUTCFullYear() - dt1.getUTCFullYear();
		var nMonths = dt2.getUTCMonth() - dt1.getUTCMonth() + (nYears!=0 ? nYears*12 : 0);
		var nQuarters = parseInt(nMonths / 3);	//<<-- different than VBScript, which watches rollover not completion
		
		var nMilliseconds = iDiffMS;
		var nSeconds = parseInt(iDiffMS / 1000);
		var nMinutes = parseInt(nSeconds / 60);
		var nHours = parseInt(nMinutes / 60);
		var nDays  = parseInt(nHours / 24);	
		var nWeeks = parseInt(nDays / 7);
	
		if(p_Interval.toLowerCase()=='ww'){
				// set dates to 1st & last FirstDayOfWeek
				var offset = DatePart("w", dt1, p_FirstDayOfWeek)-1;
				if(offset){	dt1.setDate(dt1.getDate() +7 -offset);	}
				var offset = DatePart("w", dt2, p_FirstDayOfWeek)-1;
				if(offset){	dt2.setDate(dt2.getDate() -offset);	}
				// recurse to "w" with adjusted dates
				var nCalWeeks = DateDiff("w", dt1, dt2) + 1;
		}
		
		// return difference
		switch(p_Interval.toLowerCase()){
			case "yyyy": return nYears;
			case "q": return nQuarters;
			case "m":	return nMonths;
			case "y":			// day of year
			case "d": return nDays;
			case "w": return nWeeks;
			case "ww":return nCalWeeks; // week of year	
			case "h": return nHours;
			case "n": return nMinutes;
			case "s": return nSeconds;
			case "ms":return nMilliseconds;	// not in VBScript
			default : return "invalid interval: '" + p_Interval + "'";
		}
	}
	
	function DatePart(p_Interval, p_Date, p_FirstDayOfWeek){
		if(!CDate(p_Date)){	return "invalid date: '" + p_Date + "'";	}
	
		var dtPart = CDate(p_Date);
		
		switch(p_Interval.toLowerCase()){
			case "yyyy": return dtPart.getFullYear();
			case "q": return parseInt(dtPart.getMonth() / 3) + 1;
			case "m": return dtPart.getMonth() + 1;
			case "y": return DateDiff("y", "1/1/" + dtPart.getFullYear(), dtPart) + 1;	// day of year
			case "d": return dtPart.getDate();
			case "w": return ''; //Weekday(dtPart.getDay()+1, p_FirstDayOfWeek);		// weekday
			case "ww":return DateDiff("ww", "1/1/" + dtPart.getFullYear(), dtPart, p_FirstDayOfWeek) + 1;	// week of year
			case "h": return dtPart.getHours();
			case "n": return dtPart.getMinutes();
			case "s": return dtPart.getSeconds();
			case "ms":return dtPart.getMilliseconds();	// <-- JS extension, NOT in VBScript
			default : return "invalid interval: '" + p_Interval + "'";
		}
	}

/* ]]> */
</script>


<!-- ACCORDION -->
<script type="text/javascript">
/* <![CDATA[ */
	$(document).ready(function(){
		$( "#accordion" ).accordion();
	});
/* ]]> */
</script>

<!-- COLOR BOX -->
<script type="text/javascript">
/* <![CDATA[ */
	$(document).ready(function(){
		$("a[rel='gallery']").colorbox({
			transition:"fade",
			current: "Imagen {current} de {total}",
			previous: "Anterior",
			next: "Siguiente",
			close: "Cerrar"
		});
		$(".colorbox").colorbox({rel: 'nofollow', transition: "fade"});
		$(".motor").colorbox({rel: 'nofollow', iframe: true, width: '1000px', height:'95%', overlayClose:false});
	});
/* ]]> */
</script>

<!-- CYCLE -->
<script type="text/javascript">
/* <![CDATA[ */

$(document).ready(function() {
	$("#slide").html("<li><img src='https://www.rolinesystem.com/v6/upload/img_website/57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f/Website12/Menu106/SubMenu239/Headers/9409433459_detalle_mesa_terraza.jpg' alt='detalle_mesa_terraza' /></li>");

    $('#pause').click(function() { $('#photos').cycle('pause'); return false; });
    $('#play').click(function() { $('#photos').cycle('resume'); return false; });
    
    $('#gallery').hover(
        function() { $('#controls').fadeIn(); },
        function() { $('#controls').fadeOut(); }
    );
    
    $('#photos').cycle({
        fx:     'fade',
        speed:   800,
        timeout: 5000,
        next:   '#next',
        prev:   '#prev'
    });
	
	$('ul#slide').cycle({
		fx:     'fade',							
		speed: 1000,
		timeout: 5000
	});
});
/* ]]> */
</script>

<!-- BANNER -->
<script type="text/javascript" language="javascript">
/* <![CDATA[ */
$(document).ready(function() {
	$('#gastronomia').css({opacity: 0.6});
	$('#gastronomia').hover(function(){$('#gastronomia').animate({opacity: 1.0});});
	$('#gastronomia').mouseleave(function(){$('#gastronomia').animate({opacity: 0.6});});
	
	$('#empresas').css({opacity: 0.6});
	$('#empresas').hover(function(){$('#empresas').animate({opacity: 1.0});});
	$('#empresas').mouseleave(function(){$('#empresas').animate({opacity: 0.6});});
	
	$('#ofertas').css({opacity: 0.6});
	$('#ofertas').hover(function(){$('#ofertas').animate({opacity: 1.0});});
	$('#ofertas').mouseleave(function(){$('#ofertas').animate({opacity: 0.6});});
});
/* ]]> */
</script>

<!-- TOOLTIP -->
<script type="text/javascript">
/* <![CDATA[ */
$(document).ready(function() {
	$('#social a').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - ",
		fade: 250
	});
});
/* ]]> */
</script>

<!-- SUBMIT FORM -->
<script type="text/javascript">
/* <![CDATA[ */
function SubmitForm(ProcessURL, FormElements, DivResult){
    var QueryString = "";
    for(var i=0;i<(FormElements.length);i++)
    {
        QueryString += FormElements[i].name + "=" + escape(FormElements[i].value) + "&";
    } 
    
    jQuery.post(ProcessURL, QueryString, function(theResponse){
        jQuery(DivResult).html(theResponse);
    }); 
    
    return false;
}
/* ]]> */
</script>

<!-- TOOGLE -->
<script type="text/javascript">
/* <![CDATA[ */
function toggleVisibility(tagId) {
	try { 
		var tagToToggle = document.getElementById(tagId);
		if (tagToToggle.style.display == 'none') {
			tagToToggle.style.display = 'block';
			tagToToggle.style.visibility = 'visible';
		} else {
			tagToToggle.style.display = 'none';
			tagToToggle.style.visibility = 'hidden';
		}
	} catch (e) {
	}
}
/* ]]> */
</script>

<!-- IDIOMAS -->
<script type="text/javascript">
/* <![CDATA[ */
function mostrarOcultarIdiomas()
{
   if (document.getElementById("todos_idiomas").style.display != 'none'){
        document.getElementById("todos_idiomas").style.display ='none';
    }
    else {
        document.getElementById("todos_idiomas").style.display='block';
    }
}
/* ]]> */
</script>

<!-- CHRISTMAS FELICITACION -->
<!--
<script type="text/javascript">
/* <![CDATA[ */
	var testClick = 0;
	var testClick2 = 0;
    $(document).ready(function(){
        $('#header, #nav, #innerFade, .col2, .col3').click(function() {
          if("" == "" && testClick2 == 0){
		 	window.open( "http://www.galleryhoteles.com/newsletter_christmas2011/newsletter_christmas2011.html", "ChristmasCalendar", "menubar=no, status=no, scrollbars=no, menubar=no, width=513, height=741, left=160, top=150, status=no, resizable=no, toolbar=no, location=no");
			document.cookie = "secondTime=t%2D01";
			testClick2 = 1;
		  }
        });
    });
/* ]]> */
</script>
-->



<!-- FACEBOOK -->
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script> 

<script type="text/javascript">
/* <![CDATA[ */	
    $(document).ready(function(){
		
    	$("#likeFacebook").html('<iframe src="//www.facebook.com/plugins/like.php?locale=es_ES&amp;href='+ escape(document.location.href.replace('/', '%2F')) +'&amp;send=false&amp;layout=button_count&amp;width=323&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=trebuchet+ms&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:323px; height:21px;" allowTransparency="true"></iframe>');
    });
/* ]]> */
</script>	
    
    
<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">
/* <![CDATA[ */	
	  var _gaq = _gaq || [];
	  _gaq.push(['_setAccount', 'UA-1360337-1']);
	  _gaq.push(['_trackPageview']);
	  
	  _gaq.push(function() {
		  var pageTracker = _gat._getTrackerByName();
		  var iframe = document.getElementById('cboxIframe');
		  iframe.src = pageTracker._getLinkerUrl('https://www.rolinesystem.com/');
	  });
	
	  (function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	  })();
/* ]]> */
</script>


</head>

<body>
    <div id="header">
        <div class="center">
        	
            
				<a href="http://www.galleryhoteles.com/" id="galleryhoteles" title="Gallery Hoteles"><span>Gallery Hoteles</span></a>
            
        
            <form name="ChangePage" method="post" action="index.asp" >		
				
                    <input type="hidden" name="IdMenu" id="IdMenu" value="106" />
                
                    <input type="hidden" name="IdSubMenu" id="IdSubMenu" value="0" />
                
                    <input type="hidden" name="IdReview" id="IdReview" value="0" />
                
                        <script type="text/javascript">
							<!--
                            if(!document.getElementById('IdWebsite')) { document.write('<input type="hidden" name="IdWebsite" id="IdWebsite" value="12">'); }               
							//-->
                        </script>
                    
                        <script type="text/javascript">
							<!--
                            if(!document.getElementById('urlRule1')) { document.write('<input type="hidden" name="urlRule1" id="urlRule1" value="restaurante-gallery-barcelona">'); }               
							//-->
                        </script>
                    
                        <script type="text/javascript">
							<!--
                            if(!document.getElementById('urlRule2')) { document.write('<input type="hidden" name="urlRule2" id="urlRule2" value="menu-semana">'); }               
							//-->
                        </script>
                    
                        <script type="text/javascript">
							<!--
                            if(!document.getElementById('LC')) { document.write('<input type="hidden" name="LC" id="LC" value="es">'); }               
							//-->
                        </script>
                    
            </form>
            <!--select onchange="Javascript: document.ChangePage.LC.value = this.value; document.ChangePage.submit();">
                <option value="es"  selected="selected" >Español</option>
                <option value="fr" >Français</option>
                <option value="en" >English</option>
            </select-->
            
            <ul>
            	<li><a href="http://www.galleryhotel.com/es/rss" rel="NoFollow" class="rss colorbox" title="RSS">RSS</a></li>
                <li><a href="Javascript: window.print();" class="print" title="Imprimir">Imprimir</a></li>
                <li><a href="http://www.galleryhotel.com/es/contacto" rel="NoFollow" class="contact colorbox" title="Contacto">Contacto</a></li>
                <li>
                	<a onclick="mostrarOcultarIdiomas()" id="idioma_seleccionado" class="language" >idioma</a>
                    <div id="todos_idiomas" style="display:none;">
                        <ul>
                            <li><a href="http://www.galleryhotel.com/">Español</a></li>
                            <li><a href="http://www.galleryhotel.com/fr">Français</a></li>
                            <li><a href="http://www.galleryhotel.com/en">English</a></li>
                        </ul>
                    </div>
           	 	</li>
            </ul>
        </div>
    </div><div id="booking">
	<div class="center">
    	
            <a href="http://www.galleryhotel.com/" id="logo" title="Gallery Hotel Barcelona"><span>Gallery Hotel Barcelona</span></a>
        
        <form id="bookform" name="bookform">
            <input type="hidden" name="LC" id="LC" value="es" />
            <input type="hidden" name="IdClient" value="75e9d97e7831ff7781d4f0f9824b0e080bb5e781b0b14e8f9d3317cd86a5a355" />
            <div class="box">
                <label>Destino</label>
                <select name="IdHotel" id="IdHotel" class="l">
                    <option value="57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f">Barcelona</option>
                    <option value="11d44fe85f0d1657c69762af7d738627fafe008519a6cfd71750b1f339066111">Málaga</option>
                </select>
            </div>
            <div class="box">
                <label>Fecha de Llegada</label>
                <input name="CheckInDate" id="CheckInDate" class="m" onchange="Javascript: UpdateCheckOutDate();" value="23/02/2012" />
            </div>
            <div class="box">
                <label>Fecha de Salida</label>
                <input name="CheckOutDate" id="CheckOutDate" class="m" onchange="Javascript: UpdateNights();" value="24/02/2012" />
            </div>
            <div class="box">
                <label>Noches</label>
                <input name="Nights" id="Nights" class="s" value="1" onchange="Javascript: UpdateCheckOutDate();" />
            </div>
            <div class="box">
                <label>Nº Hab.</label>
                <select name="RoomNumber" id="RoomNumber" class="s" style="width: 40px;" onchange="Javascript: if(this.value > 1){ _gaq.push(['_trackPageview', '/reservas/motor-rolinesystem.com']); $.fn.colorbox({href:'https://www.rolinesystem.com/v6.6.2/index.asp?goDirect=0&'+$('#bookform').serialize(), iframe: true, width: '1000px', height: '95%', overlayClose:false}); return false; }">
                	
                    	<option value="1">1</option>
                    
                    	<option value="2">2</option>
                    
                    	<option value="3">3</option>
                    
                    	<option value="4">4</option>
                    
                    	<option value="5">5</option>
                    
                </select>
            </div>
            <div class="box">
                <label>Adultos</label>
                <input name="AdultsRoom1" id="AdultsRoom1" class="s" value="2" />
            </div>
            <div class="box">
                <label>Ni&ntilde;os</label>
                <input name="ChildrenRoom1" id="Children1" class="s" value="0" />
            </div>            
            
                <input type="hidden" name="AdultsRoom2" value="2" />
                <input type="hidden" name="ChildrenRoom2"  value="0" />
			
                <input type="hidden" name="AdultsRoom3" value="2" />
                <input type="hidden" name="ChildrenRoom3"  value="0" />
			
                <input type="hidden" name="AdultsRoom4" value="2" />
                <input type="hidden" name="ChildrenRoom4"  value="0" />
			
                <input type="hidden" name="AdultsRoom5" value="2" />
                <input type="hidden" name="ChildrenRoom5"  value="0" />
			
                <input type="hidden" name="DiscountCode" id="DiscountCode" value="" />
            
            <button type="button" onclick="Javascript: _gaq.push(['_trackPageview', '/reservas/motor-rolinesystem.com']); $.fn.colorbox({href:'https://www.rolinesystem.com/v6.6.2/index.asp?'+$('#bookform').serialize(), iframe: true, width: '1000px', height: '95%', overlayClose:false}); return false; ">&nbsp;&nbsp;Reservar&nbsp;&nbsp;</button>
        </form>
        <ul id="bookphone">
            <li class="phone">+34 93.415.99.11</li>
            <li class="place">Central de Reservas</li>
        </ul>
    </div>
</div><div id="nav">
    <div class="center">
        <ul class="sf-menu">
            
                    	<li><a href="http://www.galleryhotel.com/" title="Home">Home</a>
            		
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/" title="Gallery Hotel - Barcelona - Barcelona">Gallery Hotel - Barcelona</a></li>
                                    
                                	<li><a href="http://www.galleryhoteles.com" title="Gallery Hoteles">Gallery Hoteles</a></li>
                                
                                	<li><a href="http://www.hotelmolinalario.com" title="Hotel Hotel Molina Lario - M&#225;laga - M&aacute;laga">Hotel Molina Lario - M&#225;laga</a></li>
                                
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/es/hotel-centro-barcelona" title="Ubicaci&#243;n">Ubicaci&#243;n</a>
                
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/es/hotel-centro-barcelona/como-llegar" title="Como Llegar (Veh&#237;culo)">Como Llegar (Veh&#237;culo)</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/hotel-centro-barcelona/vacaciones" title="Barcelona como destino tur&#237;stico">Barcelona como destino tur&#237;stico</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/hotel-centro-barcelona/clima" title="Tiempo">Tiempo</a></li>
                                    
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/es/alojamiento-barcelona" title="Habitaciones">Habitaciones</a>
                
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/es/alojamiento-barcelona/habitaciones-dobles-classic" title="Habitaci&#243;n Classic">Habitaci&#243;n Classic</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/alojamiento-barcelona/habitaciones-lujo-superior" title="Habitaci&#243;n Superior">Habitaci&#243;n Superior</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/alojamiento-barcelona/junior-suites" title="Suite">Suite</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/alojamiento-barcelona/habitaciones-individuales" title="Habitaci&#243;n Individual">Habitaci&#243;n Individual</a></li>
                                    
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona" title="El Caf&#233; del Gallery">El Caf&#233; del Gallery</a>
                
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/carta" title="Carta">Carta</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/menu-semana" title="Men&#250; Semanal">Men&#250; Semanal</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/el-cafe-del-gallery-take-away" title="El Caf&#233; del Gallery Take Away">El Caf&#233; del Gallery Take Away</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/menus-especiales" title="Men&#250;s Especiales">Men&#250;s Especiales</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/propuestas-de-ocio-2012" title="propuestas de ocio 2012">propuestas de ocio 2012</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/calendario-gastronomia" title="Calendario Anual Actividades">Calendario Anual Actividades</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/reservas" title="Reserve su Mesa" class="bookTable">Reserve su Mesa</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/cocteles-tes-cafes" title="Carta C&#243;cteles y T&#233;s/Caf&#233;s">Carta C&#243;cteles y T&#233;s/Caf&#233;s</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/nuestras-recetas" title="Nuestras recetas">Nuestras recetas</a></li>
                                    
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/es/terraza-gallery-barcelona" title="Terraza">Terraza</a>
                
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/es/terraza-gallery-barcelona/actividades" title="Actividades en la Terraza">Actividades en la Terraza</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/terraza-gallery-barcelona/eventos" title="Sus Eventos">Sus Eventos</a></li>
                                    
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona" title="Salones">Salones</a>
                
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/robert-salon" title="Sal&#243;n Robert">Sal&#243;n Robert</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/crillon-conferencias" title="Sal&#243;n Crill&#243;n">Sal&#243;n Crill&#243;n</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/metropol-reuniones" title="Sal&#243;n Metropol">Sal&#243;n Metropol</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/scotch-sala-reuniones" title="Sal&#243;n Scotch">Sal&#243;n Scotch</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/ambassador-congresos" title="Sal&#243;n Ambassador">Sal&#243;n Ambassador</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/ambassador-i-convenciones" title="Sal&#243;n Ambassador I">Sal&#243;n Ambassador I</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/ambassador-ii-bodas-eventos" title="Sal&#243;n Ambassador II">Sal&#243;n Ambassador II</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/madison-sala-reuniones" title="Sal&#243;n Madison">Sal&#243;n Madison</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/dover-espacio-eventos" title="Sal&#243;n Dover">Sal&#243;n Dover</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/terraza-celebraciones-eventos" title="Terraza">Terraza</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona/pasaje-gallery" title="Pasaje Gallery">Pasaje Gallery</a></li>
                                    
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona" title="Servicios">Servicios</a>
                
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona/sauna" title="Sauna">Sauna</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona/gimnasio" title="Fitness Center">Fitness Center</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona/terraza-jardin" title="Terraza-Jard&#237;n">Terraza-Jard&#237;n</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona/solarium" title="Solarium">Solarium</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona/centro-negocios" title="Business Center">Business Center</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona/externos" title="Servicios Externos">Servicios Externos</a></li>
                                    
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/es/negocios-barcelona" title="Empresas">Empresas</a>
                
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/es/negocios-barcelona/condiciones-especiales" title="Condiciones Especiales Empresas">Condiciones Especiales Empresas</a></li>
                                    
                                    	<li><a href="http://www.galleryhotel.com/es/negocios-barcelona/oferta-12-24-horas" title="Pack 12/24 horas">Pack 12/24 horas</a></li>
                                    
                    </ul>
            	
                </li>
			
            <li><a href="http://www.galleryhotel.com/es/ofertas-gallery-barcelona" title="Ofertas &amp; Packs">Ofertas &amp; Packs</a></li>
            <li><a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;LC=es" class="motor" onclick="Javascript: _gaq.push(['_trackPageview', '/reservas/rolinesystem.com'])">Reservas</a></li>
        </ul>
    </div>
</div>


<div id="content">
	<div class="center">
    	<div id="innerFade">
        	<ul id="slide"><li></li></ul>
        </div>
				
                
                <div class="col3 floatRight">
                    <div class="title">
                    	<div id="likeFacebook" style="float:right; width:70px; overflow:hidden;"></div>
                    </div>
                    
                        <div class="banner" style="background:url(img/gastronomia.jpg) no-repeat;">
                            <div class="bannerTxt">
                                <h2>Gastronom&iacute;a</h2>
                                
                                    <ul>
                                        
                                            <li><a  href="" rel="NoFollow" class="colorbox"  title=""></a></li>
                                        
                                        <li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona/calendario-gastronomia" title="Ver m&aacute;s propuestas gastron&oacute;micas" class="more">Ver m&aacute;s propuestas gastron&oacute;micas</a></li>
                                    </ul>
                                
                            </div>
                        </div>
                    
                    <div id="newsletter">
                        <div id="newsletterBox">
                            <div id="newsletterTitle">Newsletter</div>
                            <p>Suscr&iacute;base a nuestra Newsletter y ser&aacute; el primero en recibir nuestras noticias y exclusivas promociones.</p>
                            <a class="button send colorbox"  href="http://www.galleryhotel.com/es/newsletter" rel="NoFollow">Suscr&iacute;bete</a>
                        </div>
                    </div>
                    <div class="title">S&iacute;guenos &amp; Comp&aacute;rtenos</div>
                    <ul id="social" style="margin-top:5px;">
                        <li><a href="http://www.facebook.com/cafedelgallery" title="Café del Gallery en Facebook | Gallery Hotel" target="_blank" onClick="Javascript: _gaq.push(['_trackPageview', '/external/facebook.com'])"><img src="/img/logo-facebook.jpg" border="0" /></a></li>
                    </ul>
                </div>
                
            
            
            
            
            <!--  Columna Izquierda -->
            
            
            	<div class="col2">
                    <h1>Menú Semanal</h1>
                    <ul id="breadcrumbs">
                        <li><a href='http://www.galleryhotel.com/' title='Home'>Home</a></li><li><a href='http://www.galleryhotel.com/es/restaurante-gallery-barcelona' title='El Caf&#233; del Gallery'>El Caf&#233; del Gallery</a></li><li>Menú Semanal</li>
                    </ul>
                    <div id="text">
						
						<p>Nuestros menús de mediodía y noche son una buena opción para <strong>comer en Barcelona</strong> a precios muy asequibles. El Menú cambia cada semana y ofrece seis primeros y seis segundos platos a elegir, todos ellos elaborados con productos de temporada y una gran variedad de postres como pasteles, helados o fruta natural.</p>
<br /><!--ul class="download">
<li><a href="http://www.galleryhotel.com/descargas/GalleryHotel-Menu-Semanal-es.pdf" mce_href="http://www.galleryhotel.com/descargas/GalleryHotel-Menu-Semanal-es.pdf" target="_blank" title="Menú Semanal - Gallery Hotel">Consulte aquí nuestro menú semanal.</a></li>
</ul-->
<div style="margin: 5px; width: 98%; color: #d6cabc; border: #d6cabc 1px solid;">
<p style="text-align: center;"><br /> <br /><br /><br /><br /><span style="color: #888888;"><strong style="font-size: 18px;">MENÚ DE LA SEMANA</strong></span></p>
<p style="text-align: center;"><span style="color: #888888;"><strong style="font-size: 18px;"><span style="font-size: small;">(de lunes a viernes mediodía y noche) </span></strong></span><span style="font-size: x-small;"><span style="font-style: normal; layout-grid-mode: both;" lang="CA"><span style="color: #000000;"><span style="color: #888888;"><span style="color: #888888;"><span size="1"><span lang="CA"><span style="color: #888888;"><span style="color: #888888;"><span style="mso-tab-count: 1;"><br /><br /></span></span></span></span></span></span></span></span></span></span></p>
<p style="text-align: center;"><span style="color: #c0c0c0;"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span color="#c0c0c0"><span style="color: #c0c0c0;"></span><span style="color: #c0c0c0;" color="#c0c0c0">Ensalada de manzana y apio con vinagreta de orejones</span><br /></span><span color="#c0c0c0"></span><span color="#c0c0c0"><span style="color: #888888;" color="#d6cabc"><br /><span style="color: #c0c0c0;"></span></span></span><span style="color: #c0c0c0;" color="#c0c0c0">Ensalada de queso azul, tomate y tirabeques<br /></span><br /><span style="color: #c0c0c0;" color="#c0c0c0">Arroz cremoso con almejas y langostinos (supl.2€)</span><br /><br /><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0">Crema de puerros y champiñones<br /></span><br /><span style="color: #c0c0c0;">Guiso de garbanzos con "Puntillas a la Andaluza" </span><br /><br /><span style="color: #c0c0c0;">Carpaccio de pies de cerdo con ceps confitados<br />__________________________________________________________________</span></p>
<p style="text-align: center;"><span style="color: #c0c0c0;"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0">Merluza con crema suave de hierbas aromáticas y shitake<br /></span><br /><span style="color: #c0c0c0;">Lubina asada con arroz negro (supl. 2€) </span><br /><br /><span style="color: #c0c0c0;"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0">Salmón con Pack Choi y soja</span><br /><br /><span style="color: #c0c0c0;"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0">Solomillo de cerdo con espárragos trigueros<br /></span><span style="color: #c0c0c0;"><br />Magret de pato con piña y salsa de canela (supl. 2 €) <br /></span><br /><span style="color: #c0c0c0;"></span><span style="color: #c0c0c0;" color="#c0c0c0"></span><span style="color: #c0c0c0;" color="#c0c0c0">Brocheta de butifarra con milhojas de patata</span><br /><span style="color: #c0c0c0;"></span><br /><span style="color: #c0c0c0;">___________________________________________________________________</span><br /><br /><span style="color: #c0c0c0;"></span><br /><span style="font-size: x-small;"><span style="color: #c0c0c0;">Surtido de pasteles o helados variados o fruta de temporada</span><br /></span></p>
<p style="text-align: center;"><span style="font-size: x-small;"><span style="color: #888888;"><span style="color: #c0c0c0;">Pan, agua, cerveza o refresco o copa de vino, postres y café</span> <br /><br />23.00€  I.V.A. INCLUIDO  </span></span></p>
</div>
<p><br />Si desea recibir nuestros menús semanales, rellene este formulario:</p>
                   	  		<script type="text/javascript">
								function validWeekMenuForm(){
									if(parseInt(document.getElementById('Firstname').value.length) < 4){
										alert('Por favor, rellene todos los campos.');
										document.getElementById('Firstname').focus();
										return false;
									}
									if(parseInt(document.getElementById('Lastname').value.length) < 4){
										alert('Por favor, rellene todos los campos.');
										document.getElementById('Lastname').focus();
										return false;
									}
									if(parseInt(document.getElementById('Email').value.length) < 4){
										alert('Por favor, rellene todos los campos.');
										document.getElementById('Email').focus();
										return false;
									}
									return true;
								}
							</script>
                        	<form id="WeekMenuForm" name="WeekMenuForm" method="post">
                            	<input type="hidden" name="Action" value="SendWeekMenuForm" />
                            	<br />
								<ul id="ShowResult">
                                    <li class="float">
                                    	<label for="Firstname">Nombre*</label>
                                    	<input type="text" name="Firstname" id="Firstname"/>
                                    </li>
                                    <li class="float">
                                    	<label for="Lastname">Apellido(s)*</label>
                                    	<input type="text" name="Lastname" id="Lastname"/>
                                    </li>
                                    <li class="float">
                                    	<label for="Email">Email*</label>
                                        <input type="text" name="Email" id="Email"/>
                                    </li>
                                    <li class="checkbox" style="clear:both;">
                                    	<input type="checkbox" name="Newsletter" id="Newsletter" value="1" />
                                        <label for="Newsletter">Deseo recibir informaci&oacute;n de este restaurante</label>
                                    </li>
                                    <li id="buttons">
                                    	<a class="button send" onClick="Javascript: if (validWeekMenuForm()) { _gaq.push(['_trackPageview', '/menu-semanal']); SubmitForm('includes/send_email.asp', document.getElementById('WeekMenuForm').elements, '#ShowResult'); }">Enviar</a>
                                    </li>
                                    <li>
                                    	<label><br />* Campos obligatorios</label>
                                    </li>
                               	</ul>
                        	</form>
                        
                        
                    </div>
                </div>
            
        	
  </div>
</div>

<div id="footer">
    <div class="center">
    	<div class="col3">
        	<div class="title">Men&uacute;</div>
            <ul class="menu">
            	<!-- WebsiteMenus -> initialization in nav.asp -->
            	
                            <li><a href="http://www.galleryhotel.com/" title="Home">Home</a></li>
                        
                        <li><a href="http://www.galleryhotel.com/es/hotel-centro-barcelona" title="Ubicaci&#243;n">Ubicaci&#243;n</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/es/alojamiento-barcelona" title="Habitaciones">Habitaciones</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/es/restaurante-gallery-barcelona" title="El Caf&#233; del Gallery">El Caf&#233; del Gallery</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/es/terraza-gallery-barcelona" title="Terraza">Terraza</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/es/salones-hotel-barcelona" title="Salones">Salones</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/es/servicios-hotel-barcelona" title="Servicios">Servicios</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/es/negocios-barcelona" title="Empresas">Empresas</a></li>
                    
                <li><a href="http://www.galleryhotel.com/es/ofertas-gallery-barcelona" title="Ofertas &amp; Packs">Ofertas &amp; Packs</a></li>
                <li><a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;LC=es" title="Reservas" class="motor">Reservas</a></li>
                <li><a href="http://www.galleryhotel.com/es/aviso-legal" title="Aviso Legal">Aviso Legal</a></li>
            </ul>
            <ul class="menu">
            	<li><a href="http://www.galleryhotel.com/es/opiniones-hotel-gallery-barcelona" title="Opiniones">Opiniones</a></li>
                <li><a href="http://www.galleryhotel.com/es/noticias" title="Not&iacute;cias">Not&iacute;cias</a></li>
                <li><a href="http://www.galleryhotel.com/es/rss" rel="NoFollow" class="colorbox" title="RSS">RSS</a></li>
                <li><a href="http://www.galleryhotel.com/es/contacto" rel="NoFollow" class="colorbox" title="Contacto">Contacto</a></li>
                <li><a href="http://www.galleryhotel.com/es/newsletter" rel="NoFollow" class="colorbox" title="Newsletter">Newsletter</a></li>
                <li><a href="http://www.galleryhotel.com/es/descargas" title="Descargas">Descargas</a></li>
                <li><a href="http://www.galleryhotel.com/es/mapa-web" title="Mapa Web">Mapa Web</a></li>
            </ul>
        </div>
        
        <div class="col3">
        	<div class="title">Not&iacute;cias</div>
			<ul id="footnews">
            	
                    <li><h3><a href="http://www.galleryhotel.com/es/noticias/el-cafe-del-gallery-estrena-el-servicio-take-away" class="footnew">El Café del Gallery estrena el servicio Take Away</a></h3> Take-away es el nuevo servicio que estrena El Café del Gallery esta temporada. Ahora, poder disfrutar en casa o en el trabajo de las propuestas gastronómicas ...</li>

                
                    <li><h3><a href="http://www.galleryhotel.com/es/noticias/la-terraza-del-gallery-estrena-una-barra-al-aire-libre" class="footnew">La Terraza del Restaurante del Gallery estrena Barra al aire libre</a></h3> Esta recién estrenada temporada, el Café del Gallery se renueva por fuera con una nueva barra en su Terraza. Cada día, todos aquellos que se acerquen ...</li>

                
            </ul>
            
            <div class="title">S&iacute;guenos &amp; Comp&aacute;rtenos</div>
            <ul id="social">
            	<li><a href="http://www.facebook.com/galleryhotelbcn" id="facebook" title="Gallery Hotel en Facebook" target="_blank" onclick="Javascript: _gaq.push(['_trackPageview', '/external/facebook.com'])"><span>facebook</span></a></li>
                  <li><a href="http://www.flickr.com/photos/galleryhoteles/" id="flickr" title="Gallery Hotel en FlickrFlickr" target="_blank" onclick="Javascript: _gaq.push(['_trackPageview', '/external/flickr.com'])"><span>Flickr</span></a></li>
                <li><a href="http://www.youtube.com/user/Galleryhoteles" id="youtube" title="Gallery Hotel en Youtube" target="_blank" onclick="Javascript: _gaq.push(['_trackPageview', '/external/youtube.com'])" ><span>Youtube</span></a></li>
                <li><a href="http://www.galleryhotel.com/es/rss" id="rss" rel="NoFollow" class="colorbox" title="Suscríbete a nuestro canal RSS" onclick="Javascript: _gaq.push(['_trackPageview', '/rss'])" ><span>RSS</span></a></li>
          	</ul>
        </div>
        
        <div class="col3">
        	<div class="title">Gallery Hoteles</div>
            <ul class="hotels">
            	<li><div id="galleryhotel"><span>Gallery Hotel</span></div></li>
                <li>Roselló, 249</li>
                <li>08008 Barcelona</li>
                <li>Espa&ntilde;a</li>
                <li>+34 93.415.99.11</li>
                <li>+34 93.415.91.84</li>
                <li><a href="mailto: galleryhotel@galleryhoteles.com" style="font-size:10px;">galleryhotel@galleryhoteles.com</a></li>
            </ul>
            <ul class="hotels">
            	<li><div id="molinalario"><span>Molina Lario</span></div></li>
                <li>Molina Lario, 20-22</li>
                <li>29015 Málaga</li>
                <li>Espa&ntilde;a</li>
                <li>+34 952.06.20.02</li>
                <li>+34 952.06.20.01</li>
                <li><a href="mailto: molinalario@galleryhoteles.com"  style="font-size:10px;">molinalario@galleryhoteles.com</a></li>
            </ul>
            <img src="img/gallery-hotel-20-aniversario.png" id="aniversario" />
        </div>
        
        <div id="roline">Desarrollado por <a href="http://www.rolinesystem.com" target="_blank" title="Roline System | motores de reservas, tiendas online &amp; web marketing">Roline System</a></div>
        
    </div>
</div>

</body>
</html>

