var OwenCook = {
	updatePhoto: function(url) {
		$('photo_1').update('<img src="' + url + '" alt="" />');
	},
	initCarousel: function() {
		vCarousel = new UI.Carousel("vertical_carousel", {direction: "vertical"});
	},
	updateTitle: function(title) {
		$('title_box').update('<p>' + title + '</p>');
	},
	updateDescription: function(description) {
		$('description_box').update('<p>' + description + '</p>');
	},
	updateVideo: function(videourl,title,description) {
		title=unescape(title.replace(/\+/g, " "));
		description=unescape(description.replace(/\+/g, " "));
		OwenCook.updateDescription(description);
		OwenCook.updateTitle(title);
		$('photo').update('<object width="500" height="375"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="' + videourl + '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="' + videourl + '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="375"></embed></object>');
	},
	updateDetail: function(detail) {
		$('view_detail').writeAttribute('href',detail);//('<a href="' + detail + '" target="_blank">view detail</a>');
	},

};

Event.observe(window, "load", OwenCook.initCarousel);

