Vous êtes sur la page 1sur 35

<!

DOCTYPE html>
<html xmlns:dc="http://purl.org/dc/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1
/" xmlns:cc="http://creativecommons.org/ns#">
<head>
<title>Ampao from Carcar | Flickr - Photo Sharing!</title>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">


<meta name="keywords" content="cebudelicacies, delicaciesofcarcar, sweet
delicaciesofcebu, photography, photos, photo">
<meta name="description" content="Ampao from Carcar, one of the most pop
ular Cebu delicacies, as featured at Cebu Restaurants, a blog featuring restaura
nts in Cebu. ">
<meta http-equiv="imagetoolbar" content="no">
<meta name="title" content="Ampao from Carcar">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="medium" content="image">
<link rel="image_src" href="http://farm4.static.flickr.com/3098/29218082
10_554a2f6f04_m.jpg">
<link rel="canonical" href="http://www.flickr.com/photos
/diningcebu/2921808210/">
<link id="shorturl" rev="canonical" type="text/html" hre
f="http://flic.kr/p/5sc2MC">
<meta name="viewport" content="width=1036">

<script>
F = window.F || {};
(function(F){var el,w,d,n,ua,ae,is_away_from_tab,disabled=false,assigned_events=
false;w=window;d=w.document;n=w.navigator;ua=n&&n.userAgent;function doF(e,me){i
f(is_away_from_tab&&e.target===w){is_away_from_tab=false;}else{el=e.target||me;}
} function doB(e){if(el!==w&&e.target===w){is_away_from_tab=true;}else{el=undefi
ned;}} function get(){var nt,in_doc;if(el&&(nt=el.nodeType)){if(d.contains){if((
ua&&ua.match(/Opera[\s\/]([^\s]*)/))||nt===1){in_doc=d.contains(el);}else{while(
el){if(d===el){in_doc=true;} el=el.parentNode;}}}else if(d.compareDocumentPositi
on){if(d===el||!!(d.compareDocumentPosition(el)&16)){in_doc=true;}}else{var myEl
=el;while(myEl){if(d===myEl){in_doc=true;} myEl=myEl.parentNode;}}} return in_do
c?el:undefined;} function isInput(){var n=get(),nn;if(!n){return false;} nn=n.no
deName.toLowerCase();return(nn==='input'||nn==='textarea');} function instrument
Inputs(){if(!assigned_events){var i,me,inputs=document.getElementsByTagName('inp
ut'),tas=document.getElementsByTagName('textarea'),nInputs=inputs.length,nTextAr
eas=tas.length;if(nInputs||nTextAreas){for(i=0;i<nTextAreas;i++){me=tas[i];tas[i
].attachEvent('onfocusin',function(e){if(!disabled){doF(e,me);}});};for(i=0;i<nI
nputs;i++){me=inputs[i];inputs[i].attachEvent('onfocusin',function(e){if(!disabl
ed){doF(e,me);}});};assigned_events=true;}}} function destroy(){disabled=true;if
(de=w.removeEventListener){de('focus',doF,true);de('blur',doB,true);}else if(de=
d.removeEvent){de('blur',doB);}} function dom_onready(onready_handler){if(typeof
onready_handler=='undefined'){return false;} if(document.readyState==='complete
'){onready_handler();}else{if(document.addEventListener){DOMContentLoaded=functi
on(){document.removeEventListener('DOMContentLoaded',DOMContentLoaded,false);onr
eady_handler();}}else if(document.attachEvent){DOMContentLoaded=function(){if(do
cument.readyState==='complete'){document.detachEvent('onreadystatechange',DOMCon
tentLoaded);onready_handler();}}};if(document.addEventListener){document.addEven
tListener('DOMContentLoaded',onready_handler,false);}else if(document.attachEven
t){document.attachEvent('onreadystatechange',onready_handler);}}} if(ae=w.addEve
ntListener){ae('focus',doF,true);ae('blur',doB,true);}else if(ae=d.attachEvent){
dom_onready(instrumentInputs);ae('onfocusout',doB);} F.focus_tracker={get:get,is
Input:isInput,destroy:destroy};}(F));

/*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false,
newcap: true, immed: true, onevar: false, plusplus: false */
/*global F: false, YUI: false, window: false */
(function(F) {
var listeners = [], old_func, enabled = false;
var okB = [
/AppleWebKit\/([^\s]*)/,
/MSIE\s(8[^;]*)/,
/Gecko\/([^\s]*)/
];
//hideous browser sniffing
function sniff(){
var nav = window.navigator,
ua = nav && nav.userAgent, len = okB.length;
if(ua.match(/Mobile/)){
return false; //disable for all browsers that claim to b
e mobile;
}
for (var i=0; i < len; i++) {
if(ua.match(okB[i])){
return true;
}
};
return false;
}
enabled = sniff();

// ---------------------------------------------------------------------
-----------
// Capture all keydown events.
// ---------------------------------------------------------------------
-----------
if (typeof document.onkeydown === 'function') {
old_func = document.onkeydown;
document.onkeydown = combine_funcs(old_func, handle_keydown);
}
else {
document.onkeydown = handle_keydown;
}
// ---------------------------------------------------------------------
-----------
// Connect the keyCode with the function.
// ---------------------------------------------------------------------
-----------

function handle_keydown(e) {

if(enabled && !F.focus_tracker.isInput()){


var evt = (e) ? e : window.event;
if (listeners[evt.keyCode]) {
listeners[evt.keyCode](evt);
evt.returnValue = false;
return false;
}
}
}
function combine_funcs(old_func, new_func) {
return function(e) {
old_func(e);
new_func(e);
};
}
// ---------------------------------------------------------------------
-----------
// Attach the public methods to the F object.
// ---------------------------------------------------------------------
-----------
F.keyListener = {
// -------------------------------------------------------------
-------------------
// Put the listener in an array we can check later.
// -------------------------------------------------------------
-------------------
on: function(key_code_string, func) {
if(enabled){
var key_codes = key_code_string.split(',');
for (var n = 0, len = key_codes.length; n < len;
n++) {
if (typeof listeners[key_codes[n]] === '
function') {
func = combine_funcs(listeners[k
ey_codes[n]], func);
}
listeners[key_codes[n]] = func;
}
}
},
// -------------------------------------------------------------
-------------------
// Remove the handler entirely, so that YUI3 key listeners can b
e used instead.
// -------------------------------------------------------------
-------------------
detach_all: function() {
enabled = false;
},
enabled:enabled
};
}(F)); F.keyListener.on('37,39,74,75', function(e) {
if (F.focus_tracker.isInput() || e.altKey || e.ctrlKey || e.meta
Key || e.shiftKey) return;
if (e.keyCode === 37 || e.keyCode === 74) window
.location = '/photos/diningcebu/2920981177/in/photostream/';
if (e.keyCode === 39 || e.keyCod
e === 75) window.location = '/photos/diningcebu/2918143763/in/photostream/';
});
(function(){var w,d,c,smarty_timestamp,decode,nameEq,i,len,cookies,cookie,dv_coo
kie,subs,sub,c_time,photo_id,dv_id;w=window;d=document;c=d.cookie;smarty_timesta
mp='1282137242';photo_id='2921808210';dv_id='5sc2MC';nameEq='dvz=';decode=decode
URIComponent;if(!smarty_timestamp||!dv_id||c.indexOf(nameEq)===-1){return false;
} cookies=c.split(';');for(i=0,len=cookies.length;i<len;i+=1){cookie=cookies[i];
while(cookie.charAt(0)===' '){cookie=cookie.substring(1,cookie.length);} if(cook
ie.indexOf(nameEq)===0){dv_cookie=decode(cookie.substring(nameEq.length,cookie.l
ength));break;}} if(dv_cookie){nameEq=decode(dv_id)+'=';if(dv_cookie.indexOf(nam
eEq)===-1){return false;} subs=dv_cookie.split('&');for(i=0,len=subs.length;i<le
n;i+=1){sub=subs[i];if(sub.indexOf(nameEq)===0){c_time=decode(sub.substring(name
Eq.length,sub.length));break;}} if(c_time&&c_time>=smarty_timestamp){if(photo_id
){document.cookie='flignoreview='+photo_id+'; expires='+(new Date((new Date()).g
etTime()+1000*60*5)).toUTCString()+'; path=/; domain=.flickr.com';} w.setTimeout
(function(){d.body.style.visibility='hidden';w.location.reload();},0);}}}());(fu
nction(){var l,hash_pos,photo_page_regex,path_parts,hash_path_parts,old_id,new_i
d,url_values,hash_values,new_location,i,len,states,state;l=window.location;hash_
pos=l.href.indexOf('#');if(hash_pos===-1){return;} photo_page_regex=/^\/photos\/
([^\/]+)\/(\d+)(?:\/in\/([^\/]+))?(?:(?:\/page(\d+))|(?:\/(lightbox))|(?:\/(tour
)))?/;path_parts=photo_page_regex.exec(l.pathname);if(!path_parts||!path_parts i
nstanceof Array||!path_parts[1]||!path_parts[2]){return;} old_id=path_parts[2];n
ew_location={hash:l.href.substr(hash_pos),host:l.host,pathname:l.pathname,protoc
ol:l.protocol,search:l.search};if(new_location.hash.substr(1,1)==='/'){new_locat
ion.pathname=new_location.hash.substr(1);new_location.search='';new_location.has
h='';hash_path_parts=photo_page_regex.exec(new_location.pathname);if(!hash_path_
parts||!hash_path_parts instanceof Array||!hash_path_parts[1]||!hash_path_parts[
2]){return;} new_id=hash_path_parts[2];} new_location.href=new_location.protocol
+'//'+new_location.host+new_location.pathname+new_location.search+new_location.h
ash;if(new_location.pathname!==l.pathname){if(old_id===new_id){document.cookie='
flignoreview='+new_id+'; expires='+(new Date((new Date()).getTime()+1000*60*5)).
toUTCString()+'; path=/; domain=.flickr.com';}else{} if(typeof l.replace==='func
tion'){l.replace(new_location.href);}else{l.href=new_location.href;}}}());
(function(F){var w,d,top_location,self_location,referrer,flickr_regex;w=
window;d=document;top_location=top.location;self_location=self.location;referrer
=d.referrer;flickr_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*flickr\.(?:(?:c
om)|(?:net))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i;function set_cookie(na
me,value,days,domain){var expires,date,str;expires='';if(days){date=new Date();d
ate.setTime(date.getTime()+(days*24*60*60*1000));expires='; expires='+date.toUTC
String();} domain=domain||'.flickr.com';str=name+'='+w.escape(value)+expires+';
path=/; domain='+domain;d.cookie=str;} function get_cookie(name){var nameEQ,ca,i
,c;nameEQ=name+'=';ca=d.cookie.split(';');for(i=0;i<ca.length;i+=1){c=ca[i];whil
e(c.charAt(0)===' '){c=c.substring(1,c.length);} if(c.indexOf(nameEQ)===0){retur
n w.unescape(c.substring(nameEQ.length,c.length));}} return null;} function dele
te_cookie(name){set_cookie(name,'',-1);} F.f_bust=function(){var whitelist_regex
,referrer_is_flickr,referrer_is_whitelisted,cookie_name,cookie_value,frame_depth
,win,we_should_bust,we_should_wipe;cookie_name='flfbn';cookie_value=get_cookie(c
ookie_name);if(self_location===top_location){if(cookie_value){delete_cookie(cook
ie_name);} return;} function redirect(){var url=self_location.href;w.onerror=fun
ction(){return true;};if(typeof top_location.replace==='function'){top_location.
replace(url);}else{top_location.href=url;}} function wipe(){var url,img_width_at
tr,font_size,interval,win_width,html,msg;url=self_location.href;img_width_attr='
';font_size='12px';interval=w.setInterval(function(){if(d&&d.body){try{if(w.stop
){w.stop();}else if(d.execCommand){d.execCommand('Stop');} w.clearInterval(inter
val);}catch(ex){} msg='We\'re sorry, Flickr <a href="/help/blogging/#1392237" ta
rget="_top">doesn\'t allow embedding within frames</a>.<br><br>If you\'d like to
view this content, <a href="{url}" target="_top">please click here</a>.'.replac
e('{url}',url);if(d.body.innerHTML.indexOf(msg)===-1){if(typeof w.innerWidth==='
number'){win_width=w.innerWidth;}else if(d.body.clientWidth){win_width=d.body.cl
ientWidth;} if(win_width&&win_width<162){img_width_attr=' width="'+win_width+'"'
;font_size='10px';} html='<div style="font-size:'+font_size+';text-align:left;">
<div style="margin-bottom:3px;"><img alt="Flickr" '+img_width_attr+'src="http://
l.yimg.com/g/images/logo_home.png"></div><div style="padding-left:5px;line-heigh
t:1.2em;">'+msg+'</div></div>';d.body.style.margin='0';d.body.innerHTML=html;}}}
,100);} whitelist_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*(?:(?:flickr\.(?
:com)|(?:net))|(?:yahoo\.(?:com)|(?:net)|(?:co\.[A-Za-z]{2}))|(?:creativecommons
\.org)|(?:delicious\.com)|(?:eyewonderlabs\.com)|(?:bing\.com)|(?:google\.(?:com
)|(?:(?:com?\.)?[A-Za-z]{2})))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i;refe
rrer_is_flickr=flickr_regex.test(referrer);referrer_is_whitelisted=whitelist_reg
ex.test(referrer);frame_depth=0;win=self;while(win!==win.parent){frame_depth+=1;
win=win.parent;} if(cookie_value&&cookie_value===referrer){we_should_bust=true;}
else if(referrer&&!referrer_is_whitelisted){we_should_wipe=true;}else if(frame_d
epth>1&&!referrer_is_flickr){we_should_wipe=true;} if(we_should_bust){w.setTimeo
ut(function(){w.onbeforeunload=w.onunload=null;redirect();},1000);w.setTimeout(w
ipe,2000);redirect();}else if(we_should_wipe){wipe();}else if(referrer_is_whitel
isted&&!referrer_is_flickr){cookie_value=self_location.href;set_cookie(cookie_na
me,cookie_value);}};F.f_sample=function(sampling_url){var framing_url;if(self_lo
cation===top_location){return;} framing_url=referrer;if(framing_url&&framing_url
.search(flickr_regex)===-1){(new Image()).src=sampling_url+'?url='+encodeURIComp
onent(framing_url);return true;} return false;};}(F));F.f_bust();
(function(F){var registered_ids={},id_to_module_map={},interim_actions={},cleanu
p_actions={},clicked_ids={},queueing=true;function register_id(id,callbacks,requ
ired_module){id=id.replace('*','.*');registered_ids[id]=true;id_to_module_map[id
]=required_module;interim_actions[id]=callbacks.interim;cleanup_actions[id]=call
backs.cleanup;} function rectify_id(actual_id){for(var key_id in registered_ids)
{if(registered_ids.hasOwnProperty(key_id)&&actual_id.search(key_id)!==-1){return
key_id;}} return actual_id;} F.actionQueue={register:function(id,callbacks,requ
ired_module){if(id instanceof Array){for(var n=0,len=id.length;n<len;n++){regist
er_id(id[n],callbacks,required_module);}} else{register_id(id,callbacks,required
_module);}},queue_click:function(id){var id_key=rectify_id(id);if(queueing&&id&&
id_key&&registered_ids[id_key]){clicked_ids[id_key]=true;if(typeof interim_actio
ns[id_key]==='function'){interim_actions[id_key](id);} return false;} else if(qu
eueing){return false;} return true;},module_loaded:function(module_name,id_to_re
strict_to){queueing=false;for(var id in id_to_module_map){if(id_to_module_map.ha
sOwnProperty(id)&&clicked_ids[id]&&id_to_module_map[id]===module_name){cleanup_a
ctions[id](id_to_restrict_to?id_to_restrict_to:id);}}}};}(F));(function(F){var o
verlay,last_context_clicked;F.actionQueue.register('photo-lightbox',{interim:fun
ction(id){var viewport_dimensions=get_viewport_dimensions();overlay=document.cre
ateElement('div');overlay.className='interim-overlay';overlay.style.width=viewpo
rt_dimensions.width+'px';overlay.style.height=viewport_dimensions.height+'px';ov
erlay.innerHTML='<img src="/images/progress/balls-24x12-black.gif" class="interi
m-spinner">';document.body.appendChild(overlay);},cleanup:function(id){if(F.acti
onQueue['photo-lightbox']&&typeof F.actionQueue['photo-lightbox'].open==='functi
on'){F.actionQueue['photo-lightbox'].open();} overlay.parentNode.removeChild(ove
rlay);}},'photo-lightbox');F.actionQueue.register('button-bar-options',{interim:
function(id){var button=document.getElementById(id);button.className=button.clas
sName+' ActiveButt';button.blur();var fake_menu=document.createElement('div');fa
ke_menu.id='interim-menu-action';fake_menu.className=(document.getElementById('b
utton-bar-fave'))?'interim-menu':'interim-menu interim-menu-owner';fake_menu.inn
erHTML='<div class="interim-menu-arrow">⠢⠣</div>'+'<div class="interim-menu-arrow-mask"
</div>';document.getElementById('nav').appendChild(fake_menu);},cleanup:function
(id){var fake_menu=document.getElementById('interim-menu-action');if(fake_menu){
fake_menu.parentNode.removeChild(fake_menu);} F.actionQueue['photo-button-bar'].
display_action();}},'photo-button-bar');F.actionQueue.register('button-bar-share
',{interim:function(id){var button=document.getElementById(id);button.className=
button.className+' ActiveButt';},cleanup:function(id){F.actionQueue['share-menu'
].display_share();}},'share-menu');F.actionQueue.register('button-bar-fave',{int
erim:function(id){var fave_button=document.getElementById(id);if(fave_button.cla
ssName.search(/fave/)===-1){fave_button.className='Butt ywa-track fave-button fa
ve';} else{fave_button.className='Butt ywa-track fave-button';}},cleanup:functio
n(id){F.actionQueue['photo-button-bar'].toggle_fave();}},'photo-button-bar');F.a
ctionQueue.register('context-link-*',{interim:function(id){last_context_clicked=
id;},cleanup:function(id){if(last_context_clicked===id){F.actionQueue['photo-fil
mstrip'][last_context_clicked].display();}}},'photo-filmstrip');F.actionQueue.re
gister('add-a-tag',{interim:function(id){},cleanup:function(id){}},'flickr-tagrs
');F.actionQueue.register('add-a-person',{interim:function(id){},cleanup:functio
n(id){}},'photo-people');F.actionQueue.register('photoGeolocationEdit-addbutton'
,{interim:function(id){},cleanup:function(id){}},'mapr');F.actionQueue.register(
['edit-privacy','edit-viewgeo','edit-comment-perm','edit-addmeta','edit-nipsa','
edit-safety-level','edit-content-type'],{interim:function(id){},cleanup:function
(id){}},'photo-sidebar-owner');function get_viewport_dimensions(){var doc=window
.document,win=doc.defaultView||doc.parentWindow,mode=doc['compatMode'],h=win.inn
erHeight,w=win.innerWidth,root=doc['documentElement'];if(mode&&navigator.userAge
nt.search(/Opera[\s\/]([^\s]*)/)===-1){if(mode!='CSS1Compat'){root=doc.body;} h=
root.clientHeight;w=root.clientWidth;} return{height:h,width:w};} F.actionQueue.
register('photoGeolocation-*',{interim:function(id){var viewport_dimensions=get_
viewport_dimensions();overlay=document.createElement('div');overlay.className="i
nterim-spinner-transparent";document.body.appendChild(overlay);},cleanup:functio
n(id){if(F.actionQueue.photoGeolocation&&typeof F.actionQueue.photoGeolocation.d
isplay==='function'){F.actionQueue.photoGeolocation.display();} overlay.parentNo
de.removeChild(overlay);}},'photoGeolocation');F.actionQueue.register('photoGeol
ocationEdit-*',{interim:function(id){var viewport_dimensions=get_viewport_dimens
ions();overlay=document.createElement('div');overlay.className="interim-spinner-
transparent";document.body.appendChild(overlay);},cleanup:function(id){if(F.acti
onQueue.photoGeolocationEdit&&typeof F.actionQueue.photoGeolocationEdit.display=
=='function'){F.actionQueue.photoGeolocationEdit.display();} overlay.parentNode.
removeChild(overlay);}},'photoGeolocationEdit');}(F));</script>

<link rel="stylesheet" href="http://l.yimg.com/g/combo.gne?c/c_flickr_na


v.css.vPQgb&amp;c/c_flickr_zeus.css.vPMYq&amp;c/c_flickr_nav.css.vPQgb&amp;c/c_p
hoto_zeus.css.vPQgb&amp;c/c_photo-zeus-en-us.css.vNxb1&amp;c/c_photo-filmstrip.c
ss.vPQgb&amp;c/c_fave-star.css.vPQgb&amp;c/c_photo-notes-zeus.css.vMLYd&amp;c/c_
photos-people-zeus.css.vPQgb&amp;c/c_photo-comments.css.vPQgb&amp;c/c_tagrs_zeus
.css.vPQgb&amp;c/c_sharing-zeus.css.vPHbQ&amp;c/c_guestpass_zeus.css.vMFo5&amp;c
/c_input-hint.css.vMrRA&amp;c/c_pagination-zeus.css.vL1to&amp;c/c_foot_zeus.css.
vPKYU&amp;c/c_photo-tour-zeus.css.vP2Ah" type="text/css">
<link rel="shortcut icon" type="image/ico" href="/favicon.ico">
<link rel="search" type="application/opensearchdescription+xml" href="/o
pensearch.xml" title="Flickr">

</head>
<body class="signed-out ">
<script>document.body.className = [document.body.className, 'js'].join('
');</script>
<div id="beacon"><img src="http://geo.yahoo.com/f?s=792600415&t=127fd88c
4c106bdb1928b67e561b7c7e&r=http%3A%2F%2Fimages.search.yahoo.com%2Fimages%2Fview%
3Fback%3Dhttp%253A%252F%252Fimages.search.yahoo.com%252Fsearch%252Fimages%253Fp%
253Dampao%252Bof%252Bcebu%2526ei%253Dutf-8%2526fr%253Dsfp%2526fr2%253Dsg-gac-sy%
26w%3D500%26h%3D375%26imgurl%3Dfarm4.static.flickr.com%252F3098%252F2921808210_5
54a2f6f04.jpg%26rurl%3Dhttp%253A%252F%252Fwww.flickr.com%252Fphotos%252Fdiningce
bu%252F2921808210%252F%26size%3D74k%26name%3DAmpao%2Bfrom%2BCarca...%26p%3Dampao
%2Bof%2Bcebu%26oid%3Da693507948713d50%26fr2%3Dsg-gac-sy%26fusr%3DCebu%2BRestaur.
..%26no%3D5%26tt%3D45%26sigr%3D11jv8os05%26sigi%3D11m57psfp%26sigb%3D12q0qbovk&f
l_ev=0&lang=en&intl=au&test=gne-search-assisted&fl_ref_caught=ampao+of+cebu" wid
th="0" height="0" alt="" /></div>
<a name="top"></a>

<div id="head">
<div id="head-top">
<div id="head-logo">
<a href="/"><img src="http://l.yimg.com/g/images
/en-us/flickr-yahoo-logo-2.png" width="180" height="30" alt="Flickr logo. If you
click it, you'll go home"></a>
</div>
<div id="head-status">
You aren't signe
d in
&nbsp;&nbsp;&nbsp;
<a href="/signin/" class="ywa-track" dat
a-ywa-name="Sign in (top)">Sign In</a>
&nbsp;&nbsp;
<a href="/help/">Help</a>
</div>
</div>
<div id="head-nav-bar">

<div id="search_header_container">
<form action="/search/" method="get" id="headersearchform">
<input name="q" id="header_search_q" type="text" tabindex="5" cl
ass="Box" value="ampao of cebu">
<input name="w" id="searchform-w" type="hidden" value="all">
<input name="m" id="searchform-m" type="hidden" value="">
<input name="s" id="searchform-s" type="hidden" value="int">
<input name="mt" id="searchform-mt" type="hidden" value="">
<input name="referer_searched" id="referer_searched" type="hidde
n" value="1">
<span id="headersearchbutton1"><input value="Search" type="butto
n" class="SmallButt"></span>
</form>
<div id="search_header_button_td" style="float:left;display:inline">
<div id="candy_search_button_bar" class="flickr_nav no_js candy_
button_bar">
<ul class="site_nav_menu_buttons" style="padding-left:2p
x">
<li class="menu_li ywa-track" data-ywa-name="Sea
rch box" id="candy_nav_button_search"><span><a href="/search/">Search</a> <img s
rc="http://l.yimg.com/g/images/spaceout.gif" class="nav_button_caret" width="18"
height="15" alt="More options"></span>
<ul class="candy_menu" id="candy_nav_men
u_search">
<li>
<a title="Everyone's Upl
oads" href="/search/?w=all&s=int&mt="><b>&#183;</b> Everyone's Uploads</a>
</li>
<li>
<a title="Groups" href="
/search/groups/">Groups</a>
</li>
<li>
<a title="Flickr Members
" href="/search/people/?m=names">Flickr Members</a>
</li>
<li>
<a id="search-location-s
earch" title="For a Location" href="/map/">For a Location</a>
</li>
<li>
<a title="Applications"
href="/services/apps/search/">Applications</a>
</li>
<li>
<hr />
<a title="Cebu Restaurants II's Photostr
eam" href="/search/?w=30285645@N02">Cebu Restaurants II's Photostream</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div> <div id="candy_nav_button_bar" class="flickr_nav no_js c
andy_button_bar">
<ul class="site_nav_menu_buttons">
<li class="no_menu_li"><span><a href="/">Home</a></span></li>

<li class="no_menu_li">
<span><a href="/tour/" alt="Take the Flickr tour" class=
"ywa-track" data-ywa-name="Tour">The Tour</a></span>
</li>
<li class="no_menu_li">
<span><a href="/signup/" alt="Sign Up for a Free Account
" class="ywa-track" data-ywa-name="Sign up (top)">Sign Up</a></span>
</li>

<li class="menu_li ywa-track" data-ywa-name="Explore" id="candy_


nav_button_explore"><span><a href="/explore/" alt="Explore Flickr">Explore</a> <
img src="http://l.yimg.com/g/images/spaceout.gif" class="nav_button_caret" width
="18" height="15" alt="More options"></span>
<ul class="candy_menu" id="candy_nav_menu_explore">
<li>
<a href="/explore/">Explore Page</a>
</li>
<li>
<a href="/explore/interesting/7days/">La
st 7 Days Interesting</a>
</li>
<li>
<a href="/photos/tags/">Popular Tags</a>
</li>
<li>
<a href="/explore/interesting/2010/08/">
Calendar</a>
</li>
<li>
<a href="/photos/">Most Recent Uploads</
a>
</li>
<li>
<a href="/explore/video/">Video on Flick
r</a>
</li>
<li>
<a href="/galleries/">Galleries<
/a>
</li>
<li>
<a href="/analog/">Explore Analog</a>
</li>
<li>
<a href="/explore/clock/" title="Flickr
Clock">Flickr Clock</a>
</li>
<li>
<a href="/gettyimages" title="Getty Imag
es">Getty Images</a>
</li>

<li>
<hr />
<a href="/map/" title="Photos an
d videos on a map">World Map</a>
</li>
<li>
<a href="/places/">Places</a>
</li>
<li>
<hr />
<a href="/commons/">The Commons</a>
</li>
<li>
<a href="/creativecommons/">Creative Com
mons</a>
</li>
<li>
<hr />
<a href="http://blog.flickr.com/">Flickr
Blog</a>
</li>
<li>
<a href="http://code.flickr.com/">code.f
lickr</a>
</li>
<li>
<a href="/services/">The App Garden</a>
</li>
<li>
<a href="/cameras/">Camera Finde
r</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>

<div id="main" class="clearfix">

<img src="http://geo.yahoo.com/p?s=792600184&t=302216896&position=top" class="ad


_beacon">

<noscript>
<div class="info"><p>To take full advantage of Flickr, you should use a
JavaScript-enabled browser and <a href="http://www.macromedia.com/shockwave/down
load/download.cgi?P1_Prod_Version=ShockwaveFlash">install the latest version of
the Macromedia Flash Player</a>.</p>
</div>
</noscript>

<div id="search-refer-tip">
<div class="search-refer-tip-box">
<p>Searching for "<strong>ampao of cebu</strong>"?</p>
<p>We have 23 matches on Flickr.</p>
<p class="search-refer-tip-button"><a onclick="ult_upgrade_clic
k('U1116359');" id="referal_tip_term" href="/search/?q=ampao+of+cebu&amp;w=all&a
mp;s=int&amp;referer_searched=1" class="SmallButt">SHOW PHOTOS</a></p>
<div class="search-refer-tip-close"></div>
<div class="search-refer-tip-extra-yellow"></div>
</div>
<div class="search-refer-tip-wedge search-refer-tip-wedge-up"></div>
</div>

<div id="tour-header">
<h2>The new Flickr photo page. Bigger. Faster. More Flickr-er.</h2>
<h3>Care for a quick tour?</h3>
<ol>
<li id="step-1" class="first" data-step="1">
<span class="step-circle"><span></span></span>
<span class="step-num">1</span>
<span class="step-desc">Browse and view</span>
<span class="step-progress"></span>
</li>
<li id="step-2" data-step="2">
<span class="step-circle"><span></span></span>
<span class="step-num">2</span>
<span class="step-desc">Who, what, where</span>
<span class="step-progress"></span>
</li>
<li id="step-3" data-step="3">
<span class="step-circle"><span></span></span>
<span class="step-num">3</span>
<span class="step-desc">Comment and share</span>
<span class="step-progress"></span>
</li>
<li id="step-4" data-step="4">
<span class="step-circle"><span></span></span>
<span class="step-num">4</span>
<span class="step-desc">People and place</span>
<span class="step-progress"></span>
</li>
<li id="step-5" class="last" data-step="5">
<span class="step-circle"><span></span></span>
<span class="step-num">5</span>
</li>
</ol>
<a href="/dismiss_photo_tour.gne" class="close-x ywa-track" data-ywa-nam
e="Tour Dismiss"></a>
</div>

<div id="primary-column">

<div id="nav">
<ul id="button-bar" class="button-list"><li class="first
"><a href="#" class="Butt ywa-track" id="button-bar-options" data-ywa-name="Acti
ons" onclick="return F.actionQueue.queue_click(this.id);" tabindex="4"><span>Act
ions</span><span class="caret">&#9662;</span></a></li><li class="divider"><span>
<span></span></span></li><li class="last"><a href="#" class="DisabledButt" id="
button-bar-share" data-ywa-name="Share"><span>Share this</span><span class="care
t">&#9662;</span></a></li></ul>
<ul id="nav-bar" class="button-list"><li class="first"><a id="na
v-bar-prev" class="Butt ywa-track" data-ywa-name="Next, previous" href="/photos/
diningcebu/2920981177/in/photostream/" tabindex="4"><span class="arrow"></span><
span class="text">Newer</span></a></li><li class="divider"><span> <span></span><
/span></li><li><a id="nav-bar-lightbox" class="Butt ywa-track" data-ywa-name="Li
ghtbox Icon" href="/photos/diningcebu/2921808210/sizes/m/" title="View in light
box" onclick="return F.actionQueue.queue_click(this.id);" tabindex="4"><span></s
pan></a></li><li class="divider"><span> <span></span></span></li><li class="last
"><a id="nav-bar-next" class="Butt ywa-track" data-ywa-name="Next, previous" hre
f="/photos/diningcebu/2918143763/in/photostream/" tabindex="4"><span class="text
">Older</span><span class="arrow"></span></a></li>
</ul>

<div class="tour-overlay-wrapper" style="clear:both;left:0.5em;t


op:3em;">
<div class="tour-overlay-item step-3 point-top point-far
left">
<div class="dialog">
<div class="point"><span></span></div>
<div class="wedge"></div>
<div class="bd">
<h3>Favorite and share</h3>
<p>Save your favorite photos, sh
are with a friend, add a tag, and more.</p>
</div>
</div>
</div>
</div>

</div>

<div id="photo">
<div id="photo-drag-proxy" class="zoom-trigger" style="width:500px; height:375px
;"><ul id="notes" class="boxes"></ul> </div><div class="photo-div">
<img src="http://farm4.static.flickr.com/3098/2921808210_554a2f6f04.jpg" alt="ph
oto" width="500" height="375"></div>
<div class="tour-overlay-item st
ep-2 point-bottom point-farleft" style="bottom:20px;left:0px;">
<div class="dialog">
<div class="point"><span></span>
</div>
<div class="wedge"></div>
<div class="bd">
<h3>What's this photo ab
out?</h3>
<p>A title and descripti
on can provide essential detail about this photo.</p>
</div>
</div>
</div>
</div>

<div id="meta">
<h1 id="title_div2921808210" property="dc:title" class="photo-ti
tle">Ampao from Carcar</h1>
<div id="description_div2921808210" class="photo-desc"><p>Ampao
from Carcar, one of the most popular Cebu delicacies, as featured at <a href="ht
tp://diningcebu.com" rel="nofollow">Cebu Restaurants</a>, a blog featuring resta
urants in Cebu.</p></div>
</div>

<div id="invites" class="collapsed">


</div>

<div id="comments">

<div class="login-to-add-comment">
<h3>Want to comment on this photo?</h3>
<p><a href="/signup/?redir=%2Fphotos%2Fd
iningcebu%2F2921808210%2F&from_photos=1&friend=30285645@N02" class="ywa-track" d
ata-ywa-name="Sign up (comment form)">Sign up</a> for a free account, or <a href
="/signin/?cf=%2Fphotos%2Fdiningcebu%2F2921808210%2F" title="Sign in to Flickr"
class="ywa-track" data-ywa-name="Sign in (comment form)">sign in</a> (if you're
already a member).</p>
</div>

</div>
</div>

<div id="sidebar">

<div class="tour-overlay-item step-1 point-left" style="margin-t


op:-68px;margin-left:6px">
<div class="dialog">
<div class="point"><span></span></div>
<div class="wedge"></div>
<div class="bd">
<h3>Where you are</h3>
<p>Get to the next photo quick.</p>
</div>
</div>
</div>
<div class="tour-overlay-item step-1 point-top" style="width:21e
m;margin-left:-237px;margin-top:21px">
<div class="dialog">
<div class="point"><span></span></div>
<div class="wedge"></div>
<div class="bd">
<h3>Zoom</h3>
<p>See this photo bigger in light box vi
ew.</p>
</div>
</div>
</div>

<div id="photo-story">
<div id="photo-story-attribution" class="clearfi
x">
<p class="flickr-user" nsid="30285645@N02">
<span class="name">
<a href="/photos/diningcebu/"><img src="http://farm4.sta
tic.flickr.com/3151/buddyicons/30285645@N02.jpg?1227492590#30285645@N02" width="
24" height="24" align="absmiddle" class="buddyicon personmenu-trigger"></a>
<strong class="username">By <a href="/ph
otos/diningcebu/">Cebu Restaurants II</a></strong>
<span class="realname"><a href="
/people/diningcebu/">Cebu Restaurants Cebu Restaurants</a></span>
</span>
</p>
</div>
<p id="photo-story-story">

This photo was taken on <a href="/photos/diningcebu/archives/dat


e-taken/2008/10/07/" title="Uploaded October 7, 2008. " class="ywa-track" data-y
wa-name="Date, Taken on">October 7, 2008</a>.

</p>

<div id="photo-story-addtomap" class="story-divider"></d


iv>

<div id="photo-story-stats">
<span id="view-count" class="stat-item">
<span class="stat-icon"></span>
135 <span class="full-text">views</span>
</span>
<a href="#comments" id="comment-count" class="stat-item
zero">
<span class="stat-icon"></span>
0 <span class="full-text">comments</span>
</a>
<a href="/photos/diningcebu/2921808210/favorites/" class
="ywa-track stat-item zero" data-ywa-name="Favorites count" id="fave-count">
<span class="stat-icon"></span>
0 <span class="full-text">favorites</span>
</a>
<a href="/photos/diningcebu/2921808210/galleries/" class
="ywa-track stat-item zero" data-ywa-name="Gallery count" id="gallery-count">
<span class="stat-icon"></span>
0 <span class="full-text">galleries</span>
</a>
</div> </div>
<div class="tour-overlay-item step-2 point-top" style="l
eft:20px">
<div class="dialog">
<div class="point"><span></span></div>
<div class="wedge"></div>
<div class="bd">
<h3>The story behind this photo</h3>
<p>Key details can all be found here: wh
o took it, date taken, location, and more.</p>
</div>
</div>
</div>

<div id="sidebar-contexts">
<div class="tour-overlay-item step-1 point-bottom" style="margin-left:20
px;margin-top:-9em">
<div class="dialog">
<div class="point"><span></span></div>
<div class="wedge"></div>
<div class="bd">
<h3>Preview</h3>
<p>Flip through the film strip to see photos rel
ated to this one.</p>
</div>
</div>
</div>
<h4 class="primary-context-label">This photo belongs to</h4>
<ul id="primary-context">

<li id="context-stream-" data-context-id="photostream" data-context-type


="stream" class="sidebar-context sidebar-context-open sidebar-context-first side
bar-context-first-only">
<div id="contextDiv_stream" class="ugly-temporary-hack" style="d
isplay:block;"></div>

<div class="context-header">
<a href="/photos/diningcebu/with/2921808210/" class="con
text-link context-stream chunk ywa-track" data-ywa-name="Context Title" id="cont
ext-link-stream-" onclick="return F.actionQueue.queue_click(this.id);">
<span class="context-wrapper">
<span class="context-icon"></span>
<span class="caret"></span>
<span class="context-title" title="Cebu
Restaurants II's photostream">Cebu Restaurants II's photostream</span>
<small class="context-num" id="context-n
um-stream-">
(200)
</small>
</span>
</a>
</div>

<div id="context-photos-stream" class="context-photos">


<ul id="context-photos-list-stream-" class="context-phot
os-list">
<li style="left:-122px" data-context-position="-
2" class="loaded">
<a class="context-thumb-link ywa
-track" href="/photos/diningcebu/2921002279/in/photostream/" title="Bocarillo fr
om Carcar" data-ywa-name="Current context prev">
<img id="nextprev_thumb_stream29
21002279" class="nextprev_thumb" src="http://farm4.static.flickr.com/3074/292100
2279_a1ba81952d_s.jpg" width="56" height="56" alt="">
</a>
</li>
<li style="left:-61px" data-context-position="-1
" class="loaded">
<a class="context-thumb-link ywa
-track" href="/photos/diningcebu/2920981177/in/photostream/" title="Bocarillo fr
om Carcar" data-ywa-name="Current context prev">
<img id="nextprev_thumb_stream29
20981177" class="nextprev_thumb" src="http://farm4.static.flickr.com/3137/292098
1177_3b50a03f57_s.jpg" src="http://l.yimg.com/g/images/spaceout.gif" width="56"
height="56" alt="">
</a>
</li>
<li style="left:0px" data-context-position="0" c
lass="loaded">
<a class="context-thumb-link" href="/pho
tos/diningcebu/2921808210/in/photostream/">
<img id="nextprev_thumb_stream29
21808210" class="nextprev_thumb" src="http://farm4.static.flickr.com/3098/292180
8210_554a2f6f04_s.jpg" width="58" height="58" alt="">
</a>
<span class="current-overlay"><span></sp
an></span>
</li>
<li style="left:61px" data-context-position="1"
class="loaded">
<a class="context-thumb-link ywa
-track" href="/photos/diningcebu/2918143763/in/photostream/" title="brownie cup
la marea" data-ywa-name="Context Widget (any photo)">
<img id="nextprev_thumb_stream29
18143763" class="nextprev_thumb" src="http://farm4.static.flickr.com/3166/291814
3763_e134261834_s.jpg" width="56" height="56" alt="">
</a>
</li>
<li style="left:122px" data-context-position="2"
class="loaded">
<a class="context-thumb-link ywa
-track" href="/photos/diningcebu/2918991572/in/photostream/" title="Ampao from C
arcar" data-ywa-name="Context Widget (any photo)">
<img id="nextprev_thumb_stream29
18991572" class="nextprev_thumb" src="http://farm4.static.flickr.com/3063/291899
1572_345d3371d9_s.jpg" width="56" height="56" alt="">
</a>
</li>
</ul>

</div>
</li>
</ul>

</div>

<div class="ad-lrec">
<div class="ad-lrec-ad">
<iframe src="http://adjax.flickr.yahoo.com/ads/7
92600415/LREC/" width="302" height="265" scrolling="no" frameborder="0" marginwi
dth="0" marginheight="0"></iframe>
</div>
<p class="ad-lrec-thisisanad">Advertisement</p>
<p class="ad-lrec-gopro">Want to go ad-free? <a href="/upgrade/"
class="get-pro-link">Get Flickr Pro!</a></p>
</div>

<div id="sidecar">

<div id="photo-sidebar-tags" class="tag-list">


<h4>Tags</h4>
<div id="thetags-wrapper">
<ul id="thetags" class="
sidecar-list"><li id="tagdiv30265297-2921808210-30890041" class="first tag-eleme
nt"><span class="tag-wrapper"><a href="/photos/diningcebu/tags/cebudelicacies/"
data-tag="cebudelicacies" data-photo-owner-screenname="Cebu Restaurants II" clas
s="tag-item ywa-track" data-ywa-name="Tag(s)">cebu delicacies</a></span></li><li
id="tagdiv30265297-2921808210-30890077" class="tag-element"><span class="tag-wr
apper"><a href="/photos/diningcebu/tags/delicaciesofcarcar/" data-tag="delicacie
sofcarcar" data-photo-owner-screenname="Cebu Restaurants II" class="tag-item ywa
-track" data-ywa-name="Tag(s)">delicacies of carcar</a></span></li><li id="tagdi
v30265297-2921808210-30990188" class="last tag-element"><span class="tag-wrapper
"><a href="/photos/diningcebu/tags/sweetdelicaciesofcebu/" data-tag="sweetdelica
ciesofcebu" data-photo-owner-screenname="Cebu Restaurants II" class="tag-item yw
a-track" data-ywa-name="Tag(s)">sweet delicacies of cebu</a></span></li></ul><di
v class="clearfix"></div>
</div>

<div id="tag-global-search-template">
<!--
<div class="tag-global-search">
<div class="bd">
<div class="global-search-message">
<div class="added-by"></div>
<div class="from-this-member">View photos <a href="%s" title="View photos tagged
with %s from %s" class="user_tag_search">from this member</a> or <a href="%s" t
itle="View photos tagged with %s from everyone" class="global_tag_search ywa-tra
ck" data-ywa-name="Tag(s), Global">from everyone</a></div>
</div>
<div class="wedge"></div>
</div>
</div>
-->
</div>

<div id="machine_tag_toggle"class="empty">
<a href="#" id="machine_tag_toggle_show"><span class="c
aret"></span>&nbsp;Show machine tags (<span id="span_machine_tags_show_count">0<
/span>)</a>
<a href="#" id="machine_tag_toggle_hide"><span class="c
aret caret-down"></span>&nbsp;Hide machine tags (<span id="span_machine_tags_hid
e_count">0</span>)</a>
</div>
<ul id="themachinetags" class="icon-left sidecar-list">
</ul>
</div>
<div style="clear:both"></div>

<div id="photo-sidebar-can-use" class="sidecar">


<h4>License</h4>
<ul class="icon-inline sidecar-list">
<li class="Stats license">
<span class="ccIcn ccIcn
Small force-left"><a href="/help/general/#147"><img src="http://l.yimg.com/g/ima
ges/spaceout.gif" height="15" width="15" class="f-sprite fs-icon_all_rights"></a
></span>
<span class="license-highlight"><a href="/help/g
eneral/#147">All Rights Reserved</a></span>

</li>

</ul>
</div>

<div id="photo-sidebar-privacy" class="sidecar">


<h4>Privacy</h4>
<div class="tour-overlay-item step-3 point-top p
oint-farleft" style="margin-left:-75px">
<div class="dialog">
<div class="point"><span></span></div>
<div class="wedge"></div>
<div class="bd">
<h3>Easy privacy controls</h3>
<p>Set your photo privacy and permission
s exactly as you want. Simple!</p>
</div>
</div>
</div>
<ul class="icon-left sidecar-list">
<li>
<img src="http://l.yimg.com/g/images/spaceout.gif" width="15" height="15" align=
"left" class="f-sprite fs-icon_public force-left">
This photo is visible to everyone
</li>

</ul>
</div>

</div>
<div id="share-menu" class="yui-skin-sam share-menu-bs" style="display:none">
<div id="share-menu-arrow">⠢⠣</div>
<div id="share-menu-arrow-mask"></div>
<ul id="share-menu-options">

</ul>
<p class="share-menu-license-inf
o">
Photo license:

<span class="ccIcn ccIcnSmall force-left"><img src="http://l.yimg.com/g/images/s


paceout.gif" height="15" width="15" class="f-sprite fs-icon_all_rights"></span>
All Rights Reserved
</p>
</div>
<div id="GPTooltip">
<span style="display: none;" id="tooltip_1282137242_0">Guest Passes let
you share your photos that aren't public. Anyone can see your public photos anyt
ime, whether they're a Flickr member or not. But! If you want to share photos ma
rked as friends, family or private, use a Guest Pass. If you're sharing photos f
rom a set, you can create a Guest Pass that includes any of your photos marked a
s friends, family, or private. If you're sharing your entire photostream, you ca
n create a Guest Pass that includes photos marked as friends or family (but not
your private photos). <a href="/help/sharing/#2184" target="_blank">Learn more a
bout Guest Passes!</a></span><span class="Tip">[<a href="#" onclick="this.blur()
; show_tooltip(this, 'tooltip_1282137242_0', 599); return false;">?</a>]</span>
</div>

<div id="options-menu">
<div id="options-menu-arrow">⠢⠣</div>
<div id="options-menu-arrow-mask"></div>
<ul>

<li><a href="/photos/diningcebu/2921808210/sizes/" class="option-all-sizes ywa-t


rack" data-ywa-name="All Sizes" tabindex="10"><span></span>View all sizes</a></l
i> <li><a href="/photos/diningcebu/show/with/2921808210/" c
lass="option-slideshow ywa-track" data-ywa-name="Slideshow" tabindex="10"><span>
</span>View slideshow</a></li>
<li><a href="/photos/diningcebu/2921808210/meta/" class=
"option-meta ywa-track" data-ywa-name="Camera, More properties" tabindex="10"><s
pan></span>View Exif info</a></li>
</ul>
</div>
</div>
<div id="shortcuts">
keyboard shortcuts:
<kbd>â </kbd> previous photo
<kbd>â </kbd> next photo
<kbd>L</kbd> view in light box
<kbd>&lt;</kbd> scroll film strip left
<kbd>&gt;</kbd> scroll film strip right
</div>

</div>
<div id="tour-final" class="tour-overlay-item step-5">
<div class="dialog">
<div class="bd">
<h1>Now have some fun with it.</h1>
<p>Bye now.</p>
</div>
</div>
</div>
<div id="tour-final-panda">
<div class="attribution">by <a href="/photos/ucumari/304626330/"
alt="">ucumari</a></div>
</div>
<div id="tour-see-more" class="tour-overlay-item">
<div class="dialog">
<div class="bd">
More... <img src="http://l.yimg.com/g/images/ico
n_blue_arrow_down.gif" alt="" />
</div>
</div>
</div>

<div id="foot">
<div id="foot-wrap">
<div id="foot-share">
</div>
<div id="foot-nav">
<ul>
<li>
<span>You</span>
<ul>
<li><a href="/signin/" class="yw
a-track" data-ywa-name="Sign in (bottom)">Sign in</a></li>
<li class="last"><a href="/signu
p/" class="ywa-track" data-ywa-name="Sign up (bottom)">Create Your Free Account<
/a></li>
</ul>
</li>
<li>
<span><a href="/explore/">Explore</a></s
pan>
<ul>
<li><a href="/places/">Places</a
></li>
<li><a href="/explore/interestin
g/7days/">Last 7 Days</a></li>
<li><a href="/explore/interestin
g/2010/08/">This Month</a></li>
<li><a href="/photos/tags/">Popu
lar Tags</a></li>
<li><a href="/commons/">The Comm
ons</a></li>
<li><a href="/creativecommons/">
Creative Commons</a></li>
<li class="last"><a href="/searc
h/">Search</a></li>
</ul>
</li>
<li>
<span><a href="/help/">Help</a></span>
<ul>
<li><a href="/guidelines.gne">Co
mmunity Guidelines</a></li>
<li><a href="/help/forum/">The H
elp Forum</a></li>
<li><a href="/help/faq/">FAQ</a>
</li>
<li><a href="/si
temap.gne">Sitemap</a></li>
<li class="last"><a href="/help/
">Get Help</a></li>
</ul>
</li>
</ul>
</div>
<div id="foot-about">
<ul>
<li><a href="http://blog.flickr.net/">Flickr Blo
g</a></li>
<li><a href="/about/">About Flickr</a></li>
<li><a href="/terms.gne">Terms of Use</a></li>
<li><a href="/privacy_policy.gne">Your Privacy</
a></li>
<li><a href="http://au.docs.yahoo.com/info/terms
/">Copyright/IP Policy</a></li> <li class="last"><a id="
ft-report-abuse" href="/report_abuse.gne">Report Abuse</a></li>
</ul>
</div>
<div id="foot-lang">
<ul>
<li><a href="/change_language.gne?lang=zh-hk&magic_cooki
e=dbbedbe37a24766293952a5e6abe9c7d" class="image_link" id="lang_zh-hk"><img src=
"http://l.yimg.com/g/images/spaceout.gif" width="45" height="13" id="langselect_
zh-hk" alt="ç¹ é« ä¸æ "></a></li>
<li><a href="/change_language.gne?lang=de-de&magic_cooki
e=dbbedbe37a24766293952a5e6abe9c7d" >Deutsch</a></li>
<li><a href="/change_language.gne?lang=en-us&magic_cooki
e=dbbedbe37a24766293952a5e6abe9c7d" class="selected">English</a></li>
<li><a href="/change_language.gne?lang=es-us&magic_cooki
e=dbbedbe37a24766293952a5e6abe9c7d" >Espa&#241;ol</a></li>
<li><a href="/change_language.gne?lang=fr-fr&magic_cooki
e=dbbedbe37a24766293952a5e6abe9c7d" >Fran&#231;ais</a></li>
<li><a href="/change_language.gne?lang=ko-kr&magic_cooki
e=dbbedbe37a24766293952a5e6abe9c7d" class="image_link" id="lang_ko-kr"><img src=
"http://l.yimg.com/g/images/spaceout.gif" width="23" height="13" id="langselect_
ko-kr" alt="í ê¸ "></a></li>
<li><a href="/change_language.gne?lang=it-it&magic_cooki
e=dbbedbe37a24766293952a5e6abe9c7d" >Italiano</a></li>
<li class="last"><a href="/change_language.gne?lang=pt-b
r&magic_cookie=dbbedbe37a24766293952a5e6abe9c7d" >Portugu&#234;s</a></li>
</ul>
</div>
<div id="foot-copy">
Copyright &copy; 2010 Yahoo!7 Pty Limited. All rights re
served. </div>
</div>
</div>

<div id="global-dialog-background"></div>

<div id="page-gen"><!-- page generated by www84 (in mud) at 06:14:02 08/18/10 in


95ms --></div>
<script src="http://l.yimg.com/g/combo.gne?j/yui/3.1.0/yui/yui-m
in.js.vLvSy&amp;j/yui/3.1.0/loader/loader-min.js.vLvSy"></script>
<script>
(function() {

F.intl = 'en-us';
var yconf = {
loadOptional: false,
flickr: {
lang: 'en-us',
photo_root: 'http://farm.static.flickr.com/',
site_root: 'http://www.flickr.com',
images_root: 'http://l.yimg.com/g/images',
intl_images_root: 'http://l.yimg.com/g/images/en-us',
is_touch_device: false,
is_zeus: true,
grease_enabled: 0,
user: {
nsid: '',
ispro: 0,
dbid: '',
name: '',
pathalias: '',
expire: '',
adultness: 0,
photos_url: '/photos//',
icon_url: 'http://l.yimg.com/g/images/buddyicon.jpg#',
geo_last_location: ''
,useragent_fully_supported: 1
},
dejaview: {
id: '5sc2MC'
},
search: {
search_default: '',
search_alias: 'diningcebu',
textsearch_enabled: true,
search_referrer: '',
search_scope: 'all',
search_profile_nsid: '30285645@N02' },
enable_context_changer_keyboard_shortcut: true,
enable_fave_keyboard_shortcut: true,
printing: {
use_printcart: true,
country_user: '',
country_snapfish: '',
snapfish_cart_url: 'http://www.snapfish.com/flickrentry/
'
},
sharing: {
sending_guest_pass: 0,
share_close_butt: '<br><br><input type="button" value="O
K" class="Butt quick_share_ok" name="quick_share_ok" id="quick_share_ok">'
},
photos: [], contact_limit: 3000,
server_timestamp: 1282137242,
magic_cookie: 'dbbedbe37a24766293952a5e6abe9c7d',
notes: {
can_add_note: false,
can_add_person: false,
photo_id: '2921808210',
ratio: '1'
},
photo: {
id: '2921808210'
},
video_player_version: '71377',
lightbox: {
enable: true,
enable_faves: true ,
node_prune_threshold: 50,
node_prune_amount: 10,
position_preload_limit: 5,
hd_default: false,
video_autoplay: true }
},
flickrAPI: {
flickr_api_uri: '/services/rest/',
api_key: '960f3ea1dad0b2eb06428ba7bf690126', auth_has
h: 'dbbedbe37a24766293952a5e6abe9c7d', auth_token: '',
secret: '74252571a628762c' },
people: {
skip: {
},
api_url: '/people//contacts/cache/dump/dbbedbe37a24766293952a5e6
abe9c7d.sa',
canOnlyAddSelf: false,
enableClickAndDrag: false },
yui2: '2.5.2',
combine: true,
root: '',
base: '',
comboBase: 'http://l.yimg.com/g/combo.gne?',
loaderPath: 'http://l.yimg.com/g/javascript/yui/3.1.0/loader/loader-min.
js',
modules: {"add-to-dialog-css":{"type":"css","path":"c\/c_add-to-dialog-z
eus.css.vPQgb","ext":false},"autocomplete-2-5-1":{"path":"j\/yahoo\/autocomplete
_2.5.1-zeus.js.vPzuh","requires":["yui2-yahoo","yui2-dom","yui2-event","yui2-dat
asource"],"ext":false},"better-throttle":{"path":"j\/better-throttle.js.vPdo9","
ext":false},"bitmap-text":{"path":"j\/bitmap-text-zeus.js.vLQEd","ext":false},"b
itmap-type-silkscreen":{"path":"j\/bitmap-type-silkscreen.js.vLQEd","ext":false}
,"box-host":{"path":"j\/box-host.js.vMLJq","requires":["node","event-mousedrag",
"math","box-host-css"],"ext":false},"box-host-css":{"type":"css","path":"c\/c_bo
x-host.css.vPHXE","ext":false},"bo-selecta":{"path":"j\/bo-selecta-zeus.js.vP5RW
","requires":["anim","autocomplete-2-5-1","bo-selecta-css","bo-selecta-transjax"
,"event","event-custom","event-target","gallery-flickr-api","io-base","node"],"e
xt":false},"bo-selecta-css":{"type":"css","path":"c\/c_bo-selecta-zeus.css.vMdXj
","ext":false},"bo-selecta-transjax":{"path":"j\/bo-selecta-transjax-en-us.js.vN
wWd","requires":["transjax-base"],"ext":false},"contact-changer":{"path":"j\/con
tact-changer-zeus.js.vPhUd","requires":["event-custom","event-delegate","io-base
","global-dialog","gallery-flickr-api","contact-changer-css","contact-changer-tr
ansjax"],"ext":false},"contact-changer-css":{"type":"css","path":"c\/c_contact-c
hanger-zeus.css.vMChL","ext":false},"contact-changer-transjax":{"path":"j\/conta
ct-changer-transjax-en-us.js.vLptS","requires":["transjax-base"],"ext":false},"c
ontext-data":{"path":"j\/context-data.js.vPrpj","requires":["event-target","gall
ery-flickr-api","history-manager","photo-data"],"ext":false},"context-manager":{
"path":"j\/context-manager.js.vNKE9","ext":false},"defer-images":{"path":"j\/def
er-images.js.vP2jL","requires":["node-visibility"],"ext":false},"dejaview":{"pat
h":"j\/dejaview-zeus.js.vNstA","requires":["cookie"],"ext":false},"escape":{"pat
h":"j\/escape.js.vKNWq","ext":false},"event-annotations":{"path":"j\/event-annot
ations.js.vNHSG","ext":false},"event-mousedrag":{"path":"j\/event-mousedrag.js.v
NwR3","requires":["node","event-custom-complex","event-synthetic","event-annotat
ions"],"ext":false},"excanvas":{"path":"j\/excanvas.js.vm3Uy","ext":false},"fave
-star":{"path":"j\/fave-star.js.vP8NC","requires":["node","anim"],"ext":false},"
flickr-location-search":{"path":"j\/flickr_location_search.js.vKYkf","requires":
["event","node","query-string-args"],"ext":false},"flickr-map":{"path":"j\/flick
r-map.js.vPPpb","requires":["flickr-map-transjax","base","slider","gallery-flick
r-api","photo","dragdrop","ymap","dd-drag","yui2_5-yahoo","yui2_5-event","yui2_5
-dom","yui2_5-animation","yui2_5-dragdrop","flickr-map-css","flickr-map-css-intl
","excanvas","event-custom-complex","json","gallery-storage-lite","better-thrott
le"],"ext":false},"flickr-map-transjax":{"path":"j\/flickr-map-transjax-en-us.js
.vPvTE","requires":["transjax-base"],"ext":false},"flickr-map-css":{"type":"css"
,"path":"c\/c_flickr-map.css.vPxt3","ext":false},"flickr-map-css-intl":{"type":"
css","path":"c\/c_flickr-map-en-us.css.vPfWq","ext":false},"flickr-nav":{"path":
"j\/flickr_nav.js.vPpBS","requires":["event","node","context-manager","flickr-lo
cation-search","flickr-nav-css"],"ext":false},"flickr-nav-css":{"type":"css","pa
th":"c\/c_flickr_nav.css.vPQgb","ext":false},"flickr-page-timing":{"path":"j\/fl
ickr_page_timing.js.vPPxN","requires":["event","node"],"ext":false},"flickr-prin
ting":{"path":"j\/flickr_printing.js.vPnQq","requires":["node","event","io","gal
lery-flickr-api","event-delegate","global-dialog","sprintf","flickr-printing-css
","flickr-printing-transjax","flickr-tooltips"],"ext":false},"flickr-printing-cs
s":{"type":"css","path":"c\/c_flickr_printing_zeus.css.vMaXb","ext":false},"flic
kr-printing-transjax":{"path":"j\/flickr_printing-transjax-en-us.js.vNwWd","requ
ires":["transjax-base"],"ext":false},"flickr-tagrs":{"path":"j\/tagrs_zeus.js.vP
GYL","requires":["event","event-delegate","node","photo","query-string-args","fl
ickr-tagrs-transjax"],"ext":false},"flickr-tagrs-transjax":{"path":"j\/tagrs_zeu
s-transjax-en-us.js.vPGYL","requires":["transjax-base"],"ext":false},"flickr-too
ltips":{"path":"j\/flickr-tooltips.js.vLhYh","requires":["event","event-delegate
"],"ext":false},"focus-tracker":{"path":"j\/focus-tracker.js.vPFSY","ext":false}
,"formatting-tips-css":{"type":"css","path":"c\/c_formatting_tips_zeus.css.vKrAu
","ext":false},"gallery-flickr-api":{"path":"j\/flickr_api.js.vPFJm","requires":
["event","dump","io-xdr","substitute","json-parse"],"ext":false},"gallery-histor
y-lite":{"path":"j\/gallery-history-lite.js.vL4ib","requires":["event-custom","e
vent-custom-complex","node"],"ext":false},"gallery-storage-lite":{"path":"j\/gal
lery-storage-lite.js.vP3XA","requires":["event-base","event-custom","event-custo
m-complex","json"],"ext":false},"getty":{"path":"j\/getty_new.js.vNj6o","require
s":["event","dom","anim","node","gallery-flickr-api"],"ext":false},"global-dialo
g":{"path":"j\/global-dialog-zeus.js.vPzw1","requires":["node","event","event-de
legate","event-key","global-dialog-transjax","global-dialog-css","context-manage
r"],"ext":false},"global-dialog-css":{"type":"css","path":"c\/c_global-dialog-ze
us.css.vPPw5","ext":false},"global-dialog-transjax":{"path":"j\/global-dialog-tr
ansjax-en-us.js.vKPQ9","requires":["transjax-base"],"ext":false},"guestpass-hide
":{"path":"j\/guestpass-hide.js.vMFo5","requires":["anim","cookie","node"],"ext"
:false},"history-manager":{"path":"j\/history-manager.js.vNy31","requires":["eve
nt"],"ext":false},"image-fader":{"path":"j\/image-fader.js.vKFrW","requires":["n
ode","anim"],"ext":false},"input-hint":{"path":"j\/input-hint.js.vLjJ1","require
s":["node","event-focus","focus-tracker"],"ext":false},"insitu":{"path":"j\/insi
tu-zeus.js.vP3G5","requires":["node","event-custom","json-stringify","dejaview",
"gallery-flickr-api","insitu-transjax","string-filters","insitu-css"],"ext":fals
e},"insitu-css":{"type":"css","path":"c\/c_insitu-zeus.css.vP3G5","ext":false},"
insitu-transjax":{"path":"j\/insitu-transjax-en-us.js.vNwWd","requires":["transj
ax-base"],"ext":false},"keyboard-shortcut-manager":{"path":"j\/keyboard-shortcut
-manager.js.vPvAq","requires":["node","event-key","event-focus","event-custom","
focus-tracker","context-manager"],"optional":["photo-people-list"],"ext":false},
"timing-average":{"path":"j\/timing-average.js.vPPxN","requires":["event","cooki
e"],"ext":false},"math":{"path":"j\/math.js.vLPjC","ext":false},"nav-selecta":{"
path":"j\/nav-selecta.js.vLVyG","requires":["bo-selecta","nav-selecta-css","nav-
selecta-transjax","node"],"ext":false},"nav-selecta-css":{"type":"css","path":"c
\/c_nav-selecta.css.vN17h","ext":false},"nav-selecta-transjax":{"path":"j\/nav-s
electa-transjax-en-us.js.vNx2o","requires":["transjax-base"],"ext":false},"node-
visibility":{"path":"j\/node-visibility.js.vPdDE","requires":["node","node-plugi
nhost","better-throttle","cache"],"optional":["anim","anim-scroll"],"ext":false}
,"number":{"path":"j\/number.js.vLKiS","requires":["number-transjax"],"ext":fals
e},"number-transjax":{"path":"j\/number-transjax-en-us.js.vNqG9","requires":["tr
ansjax-base"],"ext":false},"occult":{"path":"j\/occult.js.vNC23","requires":["no
de"],"ext":false},"personmenu":{"path":"j\/personmenu-zeus.js.vPyvo","requires":
["node","anim","anim-scroll","node-visibility","event-custom","cache","io-base",
"personmenu-transjax","personmenu-css"],"optional":["contact-changer"],"ext":fal
se},"personmenu-css":{"type":"css","path":"c\/c_personmenu-zeus.css.vNaHb","ext"
:false},"personmenu-transjax":{"path":"j\/personmenu-transjax-en-us.js.vNwWd","r
equires":["transjax-base"],"ext":false},"photo":{"path":"j\/photo-zeus.js.vPGbd"
,"requires":["event-delegate","event-mouseenter","event-mousedrag","event-key","
math","photo-button-bar","photo-comments","photo-keyboard-shortcuts","keyboard-s
hortcut-manager","photo-notes","photo-sidebar","photo-context-menu","event-annot
ations","context-manager","focus-tracker","photo-data","photo-lightbox","photo-y
wa-tracking","occult","yahoo-ult"],"ext":false},"photo-button-bar":{"path":"j\/p
hoto-button-bar.js.vPKDW","requires":["add-to-dialog-css","context-manager","eve
nt","event-delegate","event-key","fave-star","gallery-flickr-api","global-dialog
","keyboard-shortcut-manager","node","node-event-simulate","photo-button-bar-tra
nsjax","context-data","photo-filmstrip","photo-permalink","photo-people-list"],"
optional":["flickr-printing","photo-replace","photo-rotate","picnik","photo-note
s"],"ext":false},"photo-button-bar-transjax":{"path":"j\/photo-button-bar-transj
ax-en-us.js.vPJPE","requires":["transjax-base"],"ext":false},"photo-comments":{"
path":"j\/photo-comments.js.vPHa7","requires":["node","event-delegate","event-cu
stom","anim","anim-scroll","node-visibility","io-form","dejaview","gallery-flick
r-api","input-hint","photo-comments-transjax","formatting-tips-css","global-dial
og","context-manager","history-manager","swfobject"],"optional":["insitu"],"ext"
:false},"photo-comments-transjax":{"path":"j\/photo-comments-transjax-en-us.js.v
PpcJ","requires":["transjax-base"],"ext":false},"photo-context-menu":{"path":"j\
/photo-context-menu.js.vPvQd","requires":["event","node","photo","photo-context-
menu-css","photo-context-menu-transjax","photo-data","photo-permalink"],"ext":fa
lse},"photo-context-menu-css":{"type":"css","path":"c\/c_photo-context-menu.css.
vNzuu","ext":false},"photo-context-menu-transjax":{"path":"j\/photo-context-menu
-transjax-en-us.js.vNwXW","requires":["transjax-base"],"ext":false},"photo-data"
:{"path":"j\/photo-data.js.vPADw","requires":["base","node","event","gallery-fli
ckr-api","anim","grease"],"ext":false},"photo-filmstrip":{"path":"j\/photo-films
trip.js.vPKTJ","requires":["anim","base","better-throttle","context-data","conte
xt-manager","event","event-delegate","event-key","event-simulate","focus-tracker
","image-fader","io","node","number","photo-button-bar-transjax","photo-filmstri
p-transjax"],"ext":false},"photo-filmstrip-transjax":{"path":"j\/photo-filmstrip
-transjax-en-us.js.vPKTJ","requires":["transjax-base"],"ext":false},"photo-geolo
cation":{"path":"j\/photo-geolocation.js.vPBqm","requires":["photo-geolocation-t
ransjax","photo","context-manager"],"ext":false},"photo-geolocation-transjax":{"
path":"j\/photo-geolocation-transjax-en-us.js.vPfwh","requires":["transjax-base"
],"ext":false},"photo-geolocation-css":{"type":"css","path":"c\/c_photo-geolocat
ion.css.vPfwh","ext":false},"photo-geosuggest":{"path":"j\/photo-geosuggest.js.v
PAYu","requires":["photo-geosuggest-transjax","global-dialog"],"ext":false},"pho
to-geosuggest-transjax":{"path":"j\/photo-geosuggest-transjax-en-us.js.vNwXW","r
equires":["transjax-base"],"ext":false},"photo-group-invites":{"path":"j\/photo-
group-invites.js.vNDHj","requires":["gallery-flickr-api","global-dialog","node",
"photo","photo-filmstrip","photo-group-invites-transjax"],"ext":false},"photo-gr
oup-invites-transjax":{"path":"j\/photo-group-invites-transjax-en-us.js.vNwXW","
requires":["transjax-base"],"ext":false},"photo-insitu":{"path":"j\/photo-insitu
.js.vNJ9d","requires":["insitu","photo","photo-data"],"ext":false},"photo-keyboa
rd-shortcuts":{"path":"j\/photo-keyboard-shortcuts.js.vPBmU","requires":["cookie
","node","event-key","event-focus","event-simulate","context-manager","focus-tra
cker"],"ext":false},"photo-lightbox":{"path":"j\/photo-lightbox.js.vPQyq","requi
res":["anim","better-throttle","context-manager","cookie","node","event-annotati
ons","event-delegate","event-key","fave-star","gallery-flickr-api","history-mana
ger","json","keyboard-shortcut-manager","photo-context-menu","context-data","pho
to-lightbox-css","photo-lightbox-transjax","photo-permalink","photo-ywa-tracking
","string-filters","swfobject"],"ext":false},"photo-lightbox-css":{"type":"css",
"path":"c\/c_photo-lightbox.css.vPQgb","ext":false},"photo-lightbox-transjax":{"
path":"j\/photo-lightbox-transjax-en-us.js.vPADw","requires":["transjax-base"],"
ext":false},"photo-notes":{"path":"j\/photo-notes-zeus.js.vPFSY","requires":["be
tter-throttle","bo-selecta","bo-selecta-transjax","box-host","event","event-anno
tations","event-delegate","focus-tracker","gallery-flickr-api","global-dialog","
node","node-visibility","photo-notes-transjax","photo-people-controller","photo-
people-transjax","string-filters"],"ext":false},"photo-notes-transjax":{"path":"
j\/photo-notes-transjax-en-us.js.vPHP3","requires":["transjax-base"],"ext":false
},"photo-owner-dialogs-css":{"type":"css","path":"c\/c_photo-owner-dialogs-zeus.
css.vP9qQ","ext":false},"photo-people-controller":{"path":"j\/photo-people-contr
oller.js.vMdVA","requires":["event","gallery-flickr-api","dejaview","photo-peopl
e-transjax"],"ext":false},"photo-people-list":{"path":"j\/photo-people-list.js.v
PJpw","requires":["event-delegate","bo-selecta","photo","node-visibility","anim"
,"photo-people-controller","global-dialog","photo-people-transjax"],"optional":[
"photo-notes"],"ext":false},"photo-people-transjax":{"path":"j\/photo-people-tra
nsjax-en-us.js.vNxPW","requires":["transjax-base"],"ext":false},"photo-permalink
":{"path":"j\/photo-permalink.js.vNJaW","ext":false},"photo-preloader":{"path":"
j\/photo-preloader.js.vPr1U","requires":["event","context-data"],"ext":false},"p
hoto-replace":{"path":"j\/photo-replace.js.vPmg3","requires":["event","node","io
","global-dialog"],"ext":false},"photo-rotate":{"path":"j\/photo-rotate.js.vPrUC
","requires":["anim","event","gallery-flickr-api","node","photo","photo-data","p
hoto-rotate-css","photo-rotate-transjax"],"ext":false},"photo-rotate-css":{"type
":"css","path":"c\/c_photo-rotate.css.vNE3h","ext":false},"photo-rotate-transjax
":{"path":"j\/photo-rotate-transjax-en-us.js.vPnbu","requires":["transjax-base"]
,"ext":false},"photo-sidebar":{"path":"j\/photo-sidebar.js.vPLW5","requires":["e
xcanvas","node","anim","bitmap-text","bitmap-type-silkscreen","event-custom","ev
ent-delegate","gallery-flickr-api","node-visibility","photo-sidebar-transjax","s
tylesheet"],"ext":false},"photo-sidebar-transjax":{"path":"j\/photo-sidebar-tran
sjax-en-us.js.vPKTJ","requires":["transjax-base"],"ext":false},"photo-sidebar-no
t-owner":{"path":"j\/photo-sidebar-not-owner.js.vLWQQ","requires":["photo-sideba
r","gallery-flickr-api","global-dialog","photo-sidebar-not-owner-transjax","phot
o-owner-dialogs-css"],"ext":false},"photo-sidebar-not-owner-transjax":{"path":"j
\/photo-sidebar-not-owner-transjax-en-us.js.vNwZE","requires":["transjax-base"],
"ext":false},"photo-sidebar-owner":{"path":"j\/photo-sidebar-owner.js.vPApJ","re
quires":["photo-sidebar","gallery-flickr-api","global-dialog","photo-sidebar-own
er-transjax","photo-owner-dialogs-css","context-manager"],"ext":false},"photo-si
debar-owner-transjax":{"path":"j\/photo-sidebar-owner-transjax-en-us.js.vNXJ9","
requires":["transjax-base"],"ext":false},"photo-tour":{"path":"j\/photo-tour.js.
vNGE1","requires":["anim","cookie","dom","event","photo","photo-tour-transjax"],
"ext":false},"photo-tour-transjax":{"path":"j\/photo-tour-transjax-en-us.js.vN3i
S","requires":["transjax-base"],"ext":false},"photo-ywa-tracking":{"path":"j\/ph
oto-ywa-tracking.js.vPwkw","requires":["event","yahoo-web-analytics"],"ext":fals
e},"picnik":{"path":"j\/picnik-zeus.js.vPrY5","requires":["picnik-transjax","jso
n","io-base","swfobject","global-dialog","picnik-css"],"ext":false},"picnik-css"
:{"type":"css","path":"c\/c_picnik-zeus.css.vPp2o","ext":false},"picnik-transjax
":{"path":"j\/picnik-transjax-en-us.js.vLqsL","requires":["transjax-base"],"ext"
:false},"query-string-args":{"path":"j\/query-string-args.js.vKEJy","ext":false}
,"rushmore-settings":{"path":"j\/rushmore-settings.js.vNcjh","requires":["node",
"event","event-delegate","io","global-dialog"],"ext":false},"search-refer":{"pat
h":"j\/search-refer-zeus.js.vKRaJ","requires":["node","anim","cookie"],"ext":fal
se},"search-results-display":{"path":"j\/search-results-display.js.vPN19","requi
res":["node","better-throttle"],"ext":false},"share-menu":{"path":"j\/share-menu
-zeus.js.vPM5G","requires":["node","event","event-key","anim","share-menu-transj
ax","bo-selecta"],"ext":false},"share-menu-transjax":{"path":"j\/share-menu-zeus
-transjax-en-us.js.vPs7G","requires":["transjax-base"],"ext":false},"sprintf":{"
path":"j\/sprintf.js.vNiA5","ext":false},"string-filters":{"path":"j\/string-fil
ters.js.vNFGQ","ext":false},"swfobject":{"path":"j\/swfobject.js.vKPmy","ext":fa
lse},"tour-nav":{"path":"j\/tour-nav.js.vPQo5","requires":["anim","node","node-e
vent-simulate","io","querystring","history","yahoo-ult"],"ext":false},"tour-caro
usel":{"path":"j\/tour-carousel.js.vN3Um","requires":["node","anim"],"ext":false
},"transjax-base":{"path":"j\/transjax-base.js.vPPj1","requires":["sprintf"],"ex
t":false},"video":{"path":"j\/video-zeus.js.vPq6s","requires":["node","escape","
event-custom","cookie","gallery-flickr-api","query-string-args","swfobject","vid
eo-transjax"],"ext":false},"video-transjax":{"path":"j\/video-zeus-transjax-en-u
s.js.vKNWq","requires":["transjax-base"],"ext":false},"yahoo-ult":{"path":"j\/ya
hoo-ult.js.vPboC","ext":false},"yahoo-web-analytics":{"path":"j\/ywa.js.vN4N5","
ext":false},"ymap":{"path":"j\/ymapapi.js.vN4N5","requires":["event-synthetic","
yui2_5-animation","yui2_5-yahoo","yui2_5-event","yui2_5-dom","yui2_5-dragdrop"],
"ext":false},"yui2_5-yahoo":{"path":"j\/yahoo\/yahoo_2.5.1.js.vr3b9","ext":false
},"yui2_5-event":{"path":"j\/yahoo\/event_2.5.1.js.vr3b9","requires":["yui2_5-ya
hoo"],"ext":false},"yui2_5-dom":{"path":"j\/yahoo\/dom_2.5.1.js.vr3b9","requires
":["yui2_5-yahoo"],"ext":false},"yui2_5-dragdrop":{"path":"j\/yahoo\/dragdrop_2.
5.1.js.vr3b9","requires":["yui2_5-yahoo","yui2_5-event","yui2_5-dom"],"ext":fals
e},"yui2_5-animation":{"path":"j\/yahoo\/animation_2.5.1.js.vr3b9","requires":["
yui2_5-yahoo","yui2_5-event","yui2_5-dom"],"ext":false}}
};

YUI(yconf).use('', function (Y) {


Y.use('defer-images', function(Y) {
Y.deferImages('#comments img.defer', { threshold: Y.DOM.winHeigh
t() });
Y.deferImages('#sidebar-contexts img.defer', { threshold: Y.DOM.winHeigh
t() });

});
Y.use('flickr-nav', 'photo', 'search-refer', 'photo-tour', 'cont
ext-data', 'photo-filmstrip', 'flickr-tagrs', 'photo-sidebar-not-owner', 'photo-
geolocation', function(Y) {
Y.flickr_nav.init({
open_on_hover: false
});

Y.photo({"id":"2921808210","title":"Ampao from Carcar","license":"0","sa


fety_level":"0","owner":"30285645@N02","ownername":"Cebu Restaurants II","pathal
ias":"diningcebu","url":"\/photos\/diningcebu\/2921808210\/","media":"photo","se
cret":"554a2f6f04","sizes":{"sq":{"label":"Square","file":"_554a2f6f04_s.jpg","u
rl":"http:\/\/farm4.static.flickr.com\/3098\/2921808210_554a2f6f04_s.jpg","width
":75,"height":75},"t":{"label":"Thumbnail","file":"_554a2f6f04_t.jpg","url":"htt
p:\/\/farm4.static.flickr.com\/3098\/2921808210_554a2f6f04_t.jpg","width":"100",
"height":"75"},"s":{"label":"Small","file":"_554a2f6f04_m.jpg","url":"http:\/\/f
arm4.static.flickr.com\/3098\/2921808210_554a2f6f04_m.jpg","width":"240","height
":"180"},"m":{"label":"Medium","file":"_554a2f6f04.jpg","url":"http:\/\/farm4.st
atic.flickr.com\/3098\/2921808210_554a2f6f04.jpg","width":"500","height":"375"}}
},
{
width: '500',
height: '375',
printing: {
country_name: '',
country_code: '',
provider: ''
},
server: '3098',
ownersUrl: '/photos/diningcebu/',
zoomUrl: '/photos/diningcebu/2921808210/sizes/m/',
license: 0,
sizes: {
sq: {
url: 'http://farm4.static.flickr.com/3098/292180
8210_554a2f6f04_s.jpg',
width: 75,
height: 75
}, t: {
url: 'http://farm4.static.flickr.com/3098/292180
8210_554a2f6f04_t.jpg',
width: 100,
height: 75
}, s: {
url: 'http://farm4.static.flickr.com/3098/292180
8210_554a2f6f04_m.jpg',
width: 240,
height: 180
}, m: {
url: 'http://farm4.static.flickr.com/3098/292180
8210_554a2f6f04.jpg',
width: 500,
height: 375
}
},
tags: [],
tags_raw: [],
swfObjSrc: 'http://l.yimg.com/g/javascript/swfobject.js.v85491.1
6',
ownerNsid: '30285645@N02',
print_order: [],
user_can_create_sets: 0,
current_url: '/photos/diningcebu/2921808210/',
qoop_url: 'http://www.qoop.com/photobooks/flickr_user/flickr_sta
rt.php?product=prints&b_id=photoID-2921808210',
tinyprints_url: 'http://www.tinyprints.com/flickr',
in_groups: [
],
geo_map_url: '/photos/diningcebu/2921808210/map/',
geo_possessed_username: 'Cebu Restaurants II\'s',
geo_thmb: 'http://farm4.static.flickr.com/3098/2921808210_554a2f
6f04_s.jpg',
has_geo: false,
is_editing_geo: false,
gallery_ids_for_user: [
],
fave_count: 0,
isPublic: 1 });

Y.searchRefer.init();
Y.photoTour.init();

Y.ContextData.add({
id: 'photostream',
type: 'stream',
title: 'Cebu Restaurants II\'s Photostream',
url: '/photos/diningcebu/',
total: '200',
open: tr
ue,
photos:
{
'-2': {"id":"2921002279","title"
:"Bocarillo from Carcar","license":"0","safety_level":"0","owner":"30285645@N02"
,"ownername":"Cebu Restaurants II","pathalias":"diningcebu","url":"\/photos\/din
ingcebu\/2921002279\/in\/photostream","media":"photo","secret":"a1ba81952d","siz
es":{"sq":{"label":"Square","file":"_a1ba81952d_s.jpg","url":"http:\/\/farm4.sta
tic.flickr.com\/3074\/2921002279_a1ba81952d_s.jpg","width":75,"height":75},"t":{
"label":"Thumbnail","file":"_a1ba81952d_t.jpg","url":"http:\/\/farm4.static.flic
kr.com\/3074\/2921002279_a1ba81952d_t.jpg","width":"100","height":"75"},"s":{"la
bel":"Small","file":"_a1ba81952d_m.jpg","url":"http:\/\/farm4.static.flickr.com\
/3074\/2921002279_a1ba81952d_m.jpg","width":"240","height":"180"},"m":{"label":"
Medium","file":"_a1ba81952d.jpg","url":"http:\/\/farm4.static.flickr.com\/3074\/
2921002279_a1ba81952d.jpg","width":"500","height":"375"}}},
'-1': {"id":"292
0981177","title":"Bocarillo from Carcar","license":"0","safety_level":"0","owner
":"30285645@N02","ownername":"Cebu Restaurants II","pathalias":"diningcebu","url
":"\/photos\/diningcebu\/2920981177\/in\/photostream","media":"photo","secret":"
3b50a03f57","sizes":{"sq":{"label":"Square","file":"_3b50a03f57_s.jpg","url":"ht
tp:\/\/farm4.static.flickr.com\/3137\/2920981177_3b50a03f57_s.jpg","width":75,"h
eight":75},"t":{"label":"Thumbnail","file":"_3b50a03f57_t.jpg","url":"http:\/\/f
arm4.static.flickr.com\/3137\/2920981177_3b50a03f57_t.jpg","width":"100","height
":"75"},"s":{"label":"Small","file":"_3b50a03f57_m.jpg","url":"http:\/\/farm4.st
atic.flickr.com\/3137\/2920981177_3b50a03f57_m.jpg","width":"240","height":"180"
},"m":{"label":"Medium","file":"_3b50a03f57.jpg","url":"http:\/\/farm4.static.fl
ickr.com\/3137\/2920981177_3b50a03f57.jpg","width":"500","height":"375"}}},
'1': {"id":"2918
143763","title":"brownie cup la marea","license":"0","safety_level":"0","owner":
"30285645@N02","ownername":"Cebu Restaurants II","pathalias":"diningcebu","url":
"\/photos\/diningcebu\/2918143763\/in\/photostream","media":"photo","secret":"e1
34261834","sizes":{"sq":{"label":"Square","file":"_e134261834_s.jpg","url":"http
:\/\/farm4.static.flickr.com\/3166\/2918143763_e134261834_s.jpg","width":75,"hei
ght":75},"t":{"label":"Thumbnail","file":"_e134261834_t.jpg","url":"http:\/\/far
m4.static.flickr.com\/3166\/2918143763_e134261834_t.jpg","width":"100","height":
"75"},"s":{"label":"Small","file":"_e134261834_m.jpg","url":"http:\/\/farm4.stat
ic.flickr.com\/3166\/2918143763_e134261834_m.jpg","width":"240","height":"180"},
"m":{"label":"Medium","file":"_e134261834.jpg","url":"http:\/\/farm4.static.flic
kr.com\/3166\/2918143763_e134261834.jpg","width":"500","height":"375"}}},
'2': {"id":"2918
991572","title":"Ampao from Carcar","license":"0","safety_level":"0","owner":"30
285645@N02","ownername":"Cebu Restaurants II","pathalias":"diningcebu","url":"\/
photos\/diningcebu\/2918991572\/in\/photostream","media":"photo","secret":"345d3
371d9","sizes":{"sq":{"label":"Square","file":"_345d3371d9_s.jpg","url":"http:\/
\/farm4.static.flickr.com\/3063\/2918991572_345d3371d9_s.jpg","width":75,"height
":75},"t":{"label":"Thumbnail","file":"_345d3371d9_t.jpg","url":"http:\/\/farm4.
static.flickr.com\/3063\/2918991572_345d3371d9_t.jpg","width":"100","height":"75
"},"s":{"label":"Small","file":"_345d3371d9_m.jpg","url":"http:\/\/farm4.static.
flickr.com\/3063\/2918991572_345d3371d9_m.jpg","width":"240","height":"180"},"m"
:{"label":"Medium","file":"_345d3371d9.jpg","url":"http:\/\/farm4.static.flickr.
com\/3063\/2918991572_345d3371d9.jpg","width":"500","height":"375"}}},
'0': {"id":"2921808210","title":
"Ampao from Carcar","license":"0","safety_level":"0","owner":"30285645@N02","own
ername":"Cebu Restaurants II","pathalias":"diningcebu","url":"\/photos\/diningce
bu\/2921808210\/in\/photostream","media":"photo","secret":"554a2f6f04","sizes":{
"sq":{"label":"Square","file":"_554a2f6f04_s.jpg","url":"http:\/\/farm4.static.f
lickr.com\/3098\/2921808210_554a2f6f04_s.jpg","width":75,"height":75},"t":{"labe
l":"Thumbnail","file":"_554a2f6f04_t.jpg","url":"http:\/\/farm4.static.flickr.co
m\/3098\/2921808210_554a2f6f04_t.jpg","width":"100","height":"75"},"s":{"label":
"Small","file":"_554a2f6f04_m.jpg","url":"http:\/\/farm4.static.flickr.com\/3098
\/2921808210_554a2f6f04_m.jpg","width":"240","height":"180"},"m":{"label":"Mediu
m","file":"_554a2f6f04.jpg","url":"http:\/\/farm4.static.flickr.com\/3098\/29218
08210_554a2f6f04.jpg","width":"500","height":"375"}}}
}
});

Y.photoFilmstrip.add('photostream', {
node: 'li#context-stream-' });
Y.tagRS.addTag('cebudelicacies', 'cebu delicacies');
Y.tagRS.addTag('delicaciesofcarcar', 'delicacies of carc
ar');
Y.tagRS.addTag('sweetdelicaciesofcebu', 'sweet delicacie
s of cebu');

Y.photoSidebarNotOwner();

Y.photoGeolocation.init('.photo-story-geopanel-trigger');
Y.tagRS.init({
old_machine_tags: 0,
global_tag_limit: '75'
});

});
Y.use('photo-preloader', function(Y) {

Y.photoPreloader.init({
preload_limits: {
low: -1,
high: 1 }
});

});
});
})();
</script>

</body>
</html>

Vous aimerez peut-être aussi