jQuery(function(){
  $tabs = jQuery('.tabs-headers a');
  if ($tabs.length>0) {
    $tabs.bind('mouseover',function(){
      rel = jQuery(this).attr('rel');
      jQuery('.tabs-content .posts,.tabs-headers a').removeClass('active');
      jQuery(this).addClass('active');
      jQuery('.tabs-content .posts[rel='+rel+']').addClass('active');
    });
  }
	jQuery('.shar').wrapInner('<span class="door"></span>').each(function(){
		jQuery(this).children(0).css('background-image',jQuery(this).css('background-image'));
	});
	
	if (jQuery('body.front')) {
		jQuery('#featured-news, #feat-casinos').vjustify();
	}
	jQuery('#articles, .advert').vjustify();
});

jQuery.fn.vjustify=function() {
    var maxHeight=0;
    this.each(function(){
        if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
    });
    this.each(function(){
        jQuery(this).height(maxHeight + "px");
        if (this.offsetHeight>maxHeight) {
            jQuery(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px");
        }
    });
};

