function startGallery() {
	var myGallery = new gallery($('myGallery'), {
		timed: false,
		defaultTransition: "continuoushorizontal"
	});
}
function ipucu() {
	var Ipuclari = new Tips($$('.ipucu'), {
	  initialize:function(){
	    this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
	  },
	  onShow: function(toolTip) {
	    this.fx.start(1);
	  },
	  onHide: function(toolTip) {
	    this.fx.start(0);
	  }
	});
}
function run() {
	if ($$("#myGallery") != "") {
		startGallery();
	}
	ipucu();
}
window.onDomReady(run);

