$(document).ready(function() {

 /* ACCORDION */
 /* ----------------------------------------- */
 
  $('#chipeta-navigation ul').accordion({
  active: false,
  event: 'mouseover',
  autoHeight: true
 });

 /* BANNER SLIDESHOW */
 /* ----------------------------------------- */
 
 $('#banner-slideshow').cycle({
  fx: 'fade'
 });

 /* CMS ACCORION */
 /* ----------------------------------------- */
 
 $('#cms-post-accordion div.cms-container h2').click(function() {
		$(this).next().toggle('slow');
		$(this).toggleClass('open');
		return false;
	}).next().hide();
 $("#cms-post-accordion div.cms-container:even, .category-news:even").addClass('even');

 /* ACCOMMODATIONS META */
 /* ----------------------------------------- */
 
 $('.post-meta span:contains("--")').each(function() {
  var $this = $(this);
  var t = $this.text();
  $this.text(t.replace('--',''));
 });

 /* OIO STYLES */
 /* ----------------------------------------- */
 
 $('#oio-publisher-fieldset tr:even').addClass('even');

 /* OIO AD HEADER */
 /* ----------------------------------------- */
 $('#oio-banner-1 li').each(function() {
  $(this).before('<li class="ad-header">[ advertisement ]</li>');
 });

});
