<!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>Gallery Hotel, Barcelona - 4-star hotel in the centre of 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="en" />
        <meta name="title" content="Gallery Hotel, Barcelona - 4-star hotel in the centre of Barcelona" />
        <meta name="description" content="Official site. 4* Sup. hotel in the centre of Barcelona, just metres from Paseo de Gracia, known for its high quality and attention to detail. Online bookings." />
        <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="en" content="barcelona hotel, passeig de gracia hotel, paseo de gracia hotel, barcelona hotel city center, barcelona hotel city centre, 4 star hotel barcelona, luxury hotel barcelona, hotel near plaza Cataluña, hotel near plaza Catalunya, barcelona hotel deals" />
    
    
    
    <!--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 - News" href="http://www.galleryhotel.com/en/rss-feeds/news" />
    <link rel="alternate" type="application/rss+xml" title="Gallery Hotel RSS Feed - Gourmet Activities" href="http://www.galleryhotel.com/en/rss-feeds/gourmet-calendar" />
    <link rel="alternate" type="application/rss+xml" title="Gallery Hotel RSS Feed - Deals" href="http://www.galleryhotel.com/en/rss-feeds/deals-gallery-barcelona" />
    
    <meta name="google-site-verification" content="SXcxiT1AH-wmHu4bz7IM84c32g30-R5r-btqmA-4hxM" />
    
    <!-- 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-en.js" type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */

	$(document).ready(function() {
		$("#CheckInDate").datepicker($.extend({minDate: 0}, $.datepicker.regional['en']));
		$("#CheckOutDate").datepicker($.extend({minDate: 1}, $.datepicker.regional['en']));
		$("#Date").datepicker($.datepicker.regional['en']);
	});
	
	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: "Image {current} of {total}",
			previous: "Previous",
			next: "Next",
			close: "Close"
		});
		$(".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/Menu111/96634583310_foto-hab-superior-home-web.jpg' alt='_foto hab superior home web' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f/Website12/Menu111/9425830181_restaurante-del-cafe-del-gallery.jpg' alt='restaurante del cafe del gallery' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f/Website12/Menu111/9569297224_hallweb.jpg' alt='hallweb' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f/Website12/Menu111/9409463122_salon-robert.jpg' alt='salon robert' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f/Website12/Menu111/9693567462_cafeteriahomeweb.jpg' alt='cafeteriahomeweb' /></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>
-->

<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">

  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="111" />
                
                    <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="ui.core.css">'); }               
							//-->
                        </script>
                    
                        <script type="text/javascript">
							<!--
                            if(!document.getElementById('urlRule2')) { document.write('<input type="hidden" name="urlRule2" id="urlRule2" value="0">'); }               
							//-->
                        </script>
                    
                        <script type="text/javascript">
							<!--
                            if(!document.getElementById('LC')) { document.write('<input type="hidden" name="LC" id="LC" value="css">'); }               
							//-->
                        </script>
                    
            </form>
            <!--select onchange="Javascript: document.ChangePage.LC.value = this.value; document.ChangePage.submit();">
                <option value="es" >Español</option>
                <option value="fr" >Français</option>
                <option value="en"  selected="selected" >English</option>
            </select-->
            
            <ul>
            	<li><a href="http://www.galleryhotel.com/en/rss" rel="NoFollow" class="rss colorbox" title="RSS">RSS</a></li>
                <li><a href="Javascript: window.print();" class="print" title="Print">Print</a></li>
                <li><a href="http://www.galleryhotel.com/en/contact" rel="NoFollow" class="contact colorbox" title="Contact">Contact</a></li>
                <li>
                	<a onclick="mostrarOcultarIdiomas()" id="idioma_seleccionado" class="language" >Language</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/en" 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="en" />
            <input type="hidden" name="IdClient" value="75e9d97e7831ff7781d4f0f9824b0e080bb5e781b0b14e8f9d3317cd86a5a355" />
            <div class="box">
                <label>Destination</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>Check-in date</label>
                <input name="CheckInDate" id="CheckInDate" class="m" onchange="Javascript: UpdateCheckOutDate();" value="05/02/2012" />
            </div>
            <div class="box">
                <label>Check-out date</label>
                <input name="CheckOutDate" id="CheckOutDate" class="m" onchange="Javascript: UpdateNights();" value="06/02/2012" />
            </div>
            <div class="box">
                <label>Nights</label>
                <input name="Nights" id="Nights" class="s" value="1" onchange="Javascript: UpdateCheckOutDate();" />
            </div>
            <div class="box">
                <label>Nº Room</label>
                <select name="RoomNumber" id="RoomNumber" class="s" style="width: 40px;">
                	
                    	<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>
            
                <input type="hidden" name="AdultsRoom1" value="2" />
                <input type="hidden" name="ChildrenRoom1"  value="0" />
			
                <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;Book&nbsp;&nbsp;</button>
        </form>
        <ul id="bookphone">
            <li class="phone">+34 93.415.99.11</li>
            <li class="place">Booking</li>
        </ul>
    </div>
</div><div id="nav">
    <div class="center">
        <ul class="sf-menu">
            
                    	<li><a href="http://www.galleryhotel.com/en" title="Home">Home</a>
                    
                    <ul>
                        
                                    	<li><a href="http://www.galleryhotel.com/en" 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/en/hotel-barcelona-centre" title="Location">Location</a>
                
                    <ul>
                        
                                	<li><a href="http://www.galleryhotel.com/en/hotel-barcelona-centre/how-to-arrive" title="How to get here (car)">How to get here (car)</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/hotel-barcelona-centre/holidays" title="Barcelona as a tourist destination">Barcelona as a tourist destination</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/hotel-barcelona-centre/weather" title="Weather">Weather</a></li>
                            	
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/en/barcelona-accommodation" title="Rooms">Rooms</a>
                
                    <ul>
                        
                                	<li><a href="http://www.galleryhotel.com/en/barcelona-accommodation/classic-double-rooms" title="Classic Room">Classic Room</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/barcelona-accommodation/luxury-superior-rooms" title="Superior Rooms">Superior Rooms</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/barcelona-accommodation/junior-suites" title="Suite">Suite</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/barcelona-accommodation/single-rooms" title="Single Room">Single Room</a></li>
                            	
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona" title="Restaurants &amp; Bars">Restaurants &amp; Bars</a>
                
                    <ul>
                        
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/menus" title="Menu">Menu</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/weekly-menu" title="Weekly set menu">Weekly set menu</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/" title=""></a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/special-menus" title="Special Menus">Special Menus</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/gourmet-activity-month" title="Monthly Gourmet Activities">Monthly Gourmet Activities</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/gourmet-calendar" title="Annual Gourmet Calendar">Annual Gourmet Calendar</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/bookings" title="Book your table">Book your table</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/cocktails-teas-coffees" title="Cocktail and coffee/tea list">Cocktail and coffee/tea list</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona/" title=""></a></li>
                            	
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/en/gallery-terrace-barcelona" title="Terrace">Terrace</a>
                
                    <ul>
                        
                                	<li><a href="http://www.galleryhotel.com/en/gallery-terrace-barcelona/activities" title="Activities on the terrace">Activities on the terrace</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/gallery-terrace-barcelona/events" title="Events">Events</a></li>
                            	
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona" title="Function Rooms">Function Rooms</a>
                
                    <ul>
                        
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/robert-meetings" title="Robert">Robert</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/crillon-conferences" title="Crillon">Crillon</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/metropol-meetings" title="Metropol">Metropol</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/scotch-functions" title="Scotch">Scotch</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/ambassador-weddings" title="Ambassador">Ambassador</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/ambassador-i-conventions" title="Ambassador I">Ambassador I</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/ambassador-ii-congresses" title="Ambassador II">Ambassador II</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/madison-meetings" title="Madison">Madison</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/dover-events-venue" title="Dover">Dover</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/terrace-celebrations-events" title="Terrace">Terrace</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona/gallery-pasaje" title="Gallery Pasaje">Gallery Pasaje</a></li>
                            	
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona" title="Services">Services</a>
                
                    <ul>
                        
                                	<li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona/sauna" title="Sauna">Sauna</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona/gym" title="Fitness Centre">Fitness Centre</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona/terrace-garden" title="Terrace">Terrace</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona/solarium" title="Solarium">Solarium</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona/business-centre" title="Business Center">Business Center</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona/external" title="External Services">External Services</a></li>
                            	
                    </ul>
            	
                </li>
			
                	<li><a href="http://www.galleryhotel.com/en/business-barcelona" title="Business">Business</a>
                
                    <ul>
                        
                                	<li><a href="http://www.galleryhotel.com/en/business-barcelona/special-conditions-companies" title="Special conditions for companies">Special conditions for companies</a></li>
                            	
                                	<li><a href="http://www.galleryhotel.com/en/business-barcelona/12-24-conventions-package" title="12/24 hour convention package">12/24 hour convention package</a></li>
                            	
                    </ul>
            	
                </li>
			
            <li><a href="http://www.galleryhotel.com/en/deals-gallery-barcelona" title="Deals &amp; Packs">Deals &amp; Packs</a></li>
            <li><a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;LC=en" class="motor" onclick="Javascript: _gaq.push(['_trackPageview', '/reservas/rolinesystem.com'])">Bookings</a></li>
        </ul>
    </div>
</div>


<div id="content">
	<div class="center">
    	<div id="innerFade">
        	<ul id="slide"><li></li></ul>
        </div>
			
   	  			<script type="text/javascript">
            		document.body.setAttribute("id", "index");
				</script>
                
				<!--div id="ChristmasLink" style="margin-top:10px;"><a style="cursor:pointer;"><img src="img/Feliz-Navidad-en.jpg" border="0" /></a></div-->
               
                <!--  Banners -->
                
                <div class="col3">
                	
                    	<div class="banner bannerMargin" id="gastronomia" style="background:url(img/banner-cafe-del-gallery.jpg) no-repeat; cursor:pointer;" onclick="Javascript: document.location.href = 'http://www.galleryhotel.com/es/restaurante-gallery-barcelona/el-cafe-del-gallery-take-away';"></div>
                    
                </div>
                
                
				
                    <div class="col3">
                        <div class="banner bannerMargin" id="empresas" style="background:url(https://www.rolinesystem.com/v6//upload/img_alert/9750725011_banner-50descuento-desayuno-copia.jpg) no-repeat;">
                            <div class="bannerTxt" style="padding-left: 0pt;">
                                
                            </div>
                        </div>
                    </div> 
                        
                
                <div class="col3">
                    <div class="banner" id="ofertas" style="background:url(/img/ofertas-y-packs.jpg) no-repeat;">
                    	<div class="bannerTxt">
                            <h2>Deals</h2>
                            
                                <ul>
                                    
                                        <li><a href="https://www.rolinesystem.com/v6.6.2/promotions.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;IdPromotion=de84dc96912b7a98f4eabd0402cf3a49dd85a4e2ca2ae74416ec3431ce9ad3d9&amp;LC=en" class="motor" title="Early booking -15% Discount" onClick="Javascript: _gaq.push(['_trackPageview', '/ofertas/rolinesystem.com'])">Early booking -15% Discount</a></li>
                                    
                                        <li><a href="https://www.rolinesystem.com/v6.6.2/promotions.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;IdPromotion=3acfd010112e9ca20dd31b114f18af0c096694669e695305e75c7be52175fad1&amp;LC=en" class="motor" title="Give yourself a treat" onClick="Javascript: _gaq.push(['_trackPageview', '/ofertas/rolinesystem.com'])">Give yourself a treat</a></li>
                                    
                                        <li><a href="https://www.rolinesystem.com/v6.6.2/promotions.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;IdPromotion=e4d22638615a115bd1aa45cd2adc56b1f3970703bfd7de81d654e9ec393ccf0a&amp;LC=en" class="motor" title="Minimum Stay 3 Nights -10% Discount" onClick="Javascript: _gaq.push(['_trackPageview', '/ofertas/rolinesystem.com'])">Minimum Stay 3 Nights -10% Discount</a></li>
                                    
                                        <li><a href="https://www.rolinesystem.com/v6.6.2/promotions.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;IdPromotion=afd8cfc9333451d4448e17c9c9436145cc854c5f8cc0eb13df7660d40c2765ce&amp;LC=en" class="motor" title="Hotel &amp; Dinner on the Terrace Package" onClick="Javascript: _gaq.push(['_trackPageview', '/ofertas/rolinesystem.com'])">Hotel & Dinner on the Terrace Package</a></li>
                                    
                                	<li><a href="http://www.galleryhotel.com/en/deals-gallery-barcelona" class="more" title="See more Deals">See more Deals</a></li>
                                </ul>
                            
                      	</div>
                    </div>
                </div>
                
                
                <!-- Columna Derecha  -->
                <div class="col3 floatRight">
                    <div class="title">Reviews</div>
                    
                    <div id="tripAdvisor">
						
                            <div id="TA_certificateOfExcellence547" class="TA_certificateOfExcellence"><ul id="lscrdL" class="TA_links uIpNBU46"><li id="ReWfPwNwfm" class="FOtjgv"><a href=http://www.tripadvisor.co.uk/Hotel_Review-g187497-d228465-Reviews-Gallery_Hotel-Barcelona_Catalonia.html>Gallery Hotel</a></li></ul></div>
							<script src="http://www.jscache.com/wejs?wtype=certificateOfExcellence&amp;uniq=547&amp;locationId=228465&amp;lang=en_UK"></script>
                        
                    </div>
                    
					
                        <a onClick="Javascript: document.ChangePage.action = 'http://www.galleryhotel.com/en/reviews-hotel-gallery-barcelona'; document.ChangePage.IdWebsite.value = '12'; document.ChangePage.IdMenu.value = '0'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.IdReview.value = 'very-nice-hotel'; document.ChangePage.LC.value = 'en';  document.ChangePage.submit();" class="review" title="very-nice-hotel">Very nice hotel. Pleasant stay.</a>
                        <div class="author">&mdash;-</div>
                    
                        <a onClick="Javascript: document.ChangePage.action = 'http://www.galleryhotel.com/en/reviews-hotel-gallery-barcelona'; document.ChangePage.IdWebsite.value = '12'; document.ChangePage.IdMenu.value = '0'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.IdReview.value = 'lovely-hotel-and-very-clean'; document.ChangePage.LC.value = 'en';  document.ChangePage.submit();" class="review" title="lovely-hotel-and-very-clean">Lovely hotel and very clean.</a>
                        <div class="author">&mdash;-</div>
                    
                    
                    <div id="newsletter">
                    	<div id="newsletterBox">
                        	<div id="newsletterTitle">Newsletter</div>
							<p>Subscribe to our Newsletter and be the first to receive our news or exclusive promotions.</p>
                            <a class="button send colorbox"  href="http://www.galleryhotel.com/en/newsletter" rel="NoFollow" title="Subscribe">Subscribe</a>
                        </div>
                    </div>
                </div>      
                
            
            
            
            
            <!--  Columna Izquierda -->
            
            
            	<div class="col2">
                    <h1>Gallery Hotel - Barcelona</h1>
                    <ul id="breadcrumbs">
                        <li><a href='http://www.galleryhotel.com/en' title='Home'>Home</a></li><li>Gallery Hotel - Barcelona</li>
                    </ul>
                    <div id="text">
						
						<p><strong>Gallery Hotel</strong> is a 4 star superior hotel exceptionally positioned in the <strong>centre of Barcelona</strong> just a stone’s throw from <strong>Paseo de Gracia</strong> and with <strong>Plaza Cataluña</strong> nearby. The Hotel has 115 rooms offering you comfort, tranquillity and where every last detail is taken care of to guarantee your stay will meet your every expectation.</p>
<p>The hotel also has 8 function rooms, holding up to 200 people, which are ideal for meetings and private receptions. Four are on the first floor and have natural light. All are fully equipped and can be organised as desired.</p>
<p>In our El Café de Gallery <span class="negrita">Restaurant - Terrace</span> you will find top quality cuisine along with a long list of wines you can enjoy either in the calm of our <span class="negrita">outdoor terrace</span> or at your leisure inside the restaurant.</p>
<p>Gallery Hotel stands in a league of its own in the heart of Barcelona, with a <span class="negrita">highly personalised service</span> combined with a friendly atmosphere and avant-garde cuisine.</p>
                    </div>
                </div>
            
        	
  </div>
</div>

<div id="footer">
    <div class="center">
    	<div class="col3">
        	<div class="title">Menu</div>
            <ul class="menu">
            	<!-- WebsiteMenus -> initialization in nav.asp -->
            	
                            <li><a href="http://www.galleryhotel.com/en" title="Home">Home</a></li>
                        
                        <li><a href="http://www.galleryhotel.com/en/hotel-barcelona-centre" title="Location">Location</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/en/barcelona-accommodation" title="Rooms">Rooms</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/en/gallery-restaurant-barcelona" title="Restaurants &amp; Bars">Restaurants &amp; Bars</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/en/gallery-terrace-barcelona" title="Terrace">Terrace</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/en/meeting-rooms-barcelona" title="Function Rooms">Function Rooms</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/en/services-hotel-barcelona" title="Services">Services</a></li>
                    
                        <li><a href="http://www.galleryhotel.com/en/business-barcelona" title="Business">Business</a></li>
                    
                <li><a href="http://www.galleryhotel.com/en/deals-gallery-barcelona" title="Deals &amp; Packs">Deals &amp; Packs</a></li>
                <li><a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=57bdd0b995361ff069cf3d657349278edf0817214dce1efadb31e98238c7db3f&amp;LC=en" title="Bookings" class="motor">Bookings</a></li>
                <li><a href="http://www.galleryhotel.com/en/legal-note" title="Legal Note">Legal Note</a></li>
            </ul>
            <ul class="menu">
            	<li><a href="http://www.galleryhotel.com/en/reviews-hotel-gallery-barcelona" title="Reviews">Reviews</a></li>
                <li><a href="http://www.galleryhotel.com/en/news" title="News">News</a></li>
                <li><a href="http://www.galleryhotel.com/en/rss" rel="NoFollow" class="colorbox" title="RSS">RSS</a></li>
                <li><a href="http://www.galleryhotel.com/en/contact" rel="NoFollow" class="colorbox" title="Contact">Contact</a></li>
                <li><a href="http://www.galleryhotel.com/en/newsletter" rel="NoFollow" class="colorbox" title="Newsletter">Newsletter</a></li>
                <li><a href="http://www.galleryhotel.com/en/downloads" title="Downloads">Downloads</a></li>
                <li><a href="http://www.galleryhotel.com/en/web-map" title="Web Map">Web Map</a></li>
            </ul>
        </div>
        
        <div class="col3">
        	<div class="title">News</div>
			<ul id="footnews">
            	
                    <li><h3><a href="http://www.galleryhotel.com/en/news/" class="footnew"></a></h3> </li>

                
                    <li><h3><a href="http://www.galleryhotel.com/en/news/" class="footnew"></a></h3> </li>

                
            </ul>
            
            <div class="title">Follow Us &amp; Share Us</div>
            <ul id="social">
            	<li><a href="http://www.facebook.com/galleryhotelbcn" id="facebook" title="Gallery Hotel on 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 on 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 on Youtube" target="_blank" onclick="Javascript: _gaq.push(['_trackPageview', '/external/youtube.com'])" ><span>Youtube</span></a></li>
                <li><a href="http://www.galleryhotel.com/en/rss" id="rss" rel="NoFollow" class="colorbox" title="Subscribe to our channel 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>Spain</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>Spain</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">Developed by <a href="http://www.rolinesystem.com" target="_blank" title="Roline System | booking engines, online shops &amp; web marketing">Roline System</a></div>
        
    </div>
</div>

</body>
</html>

