/*--------------------------------------------------------------
# ICKI Sports - May 2009 (for Joomla 1.5)
# Copyright (C) 2007-2009 Gavick.com. All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.gavick.com
# Support: support@gavick.com  
---------------------------------------------------------------*/

window.addEvent("domready",function(){
	var $b = $(document.getElementsByTagName('body')[0]);
	// smoothscroll init
	new SmoothScroll();
	// aniation classes - Fx.Height and Fx.Opacity
	Fx.Height = Fx.Style.extend({initialize: function(el, options){this.parent(el, 'height', options);this.element.setStyle('overflow', 'hidden');},toggle: function(){return (this.element.offsetHeight > 0) ? this.custom(this.element.offsetHeight, 0) : this.custom(0, this.element.scrollHeight);},show: function(){return this.set(this.element.scrollHeight);}});
	Fx.Opacity = Fx.Style.extend({initialize: function(el, options){this.now = 1;this.parent(el, 'opacity', options);},toggle: function(){return (this.now > 0) ? this.start(1, 0) : this.start(0, 1);},show: function(){return this.set(1);}});
	// help vars
	if($('popup_podcast')) var popup_podcast = new Fx.Opacity('popup_podcast', {duration: 250}).set(0);
	if($('popup_podcast')){
		$('popup_podcast').setStyle("display", "block");
		$('close_button_podcast').addEvent("click", function(){popup_podcast.start(0);});
	}
//	if($('popup_feedback')) var popup_feedback = new Fx.Opacity('popup_feedback', {duration: 250}).set(0);
//	if($('popup_feedback')){
//		$('popup_feedback').setStyle("display", "block");
//		$('close_button_feedback').addEvent("click", function(){popup_feedback.start(0);});		
//	}
	if($('popup_message')){
		var popup_message = new Fx.Opacity('popup_message', {duration: 250}).set(1);	
		$('close_button_message').addEvent("click", function(){popup_message.start(0);});
		setTimeout("endPart()", 2000);
	}	
	// login
	if($('podcast_btn')) $('podcast_btn').addEvent("click", function(e){new Event(e).stop();popup_podcast.start(1);});
	if($('podcast_btn_noborder')) $('podcast_btn_noborder').addEvent("click", function(e){new Event(e).stop();popup_podcast.start(1);});	
	// feedback
//	if($('feedback_btn')) $('feedback_btn').addEvent("click", function(e){new Event(e).stop();popup_feedback.start(1);});
//	if($('feedback_btn_noborder')) $('feedback_btn_noborder').addEvent("click", function(e){new Event(e).stop();popup_feedback.start(1);});
	// users_wrap I
	if($('wrapper_bottom')){
		if($ES('.moduletable_content', $('wrapper_bottom')).length > 0){
			var max = 0;
			$ES('.moduletable_content', $('wrapper_bottom')).each(function(el){ if(el.getSize().size.y > max) max = el.getSize().size.y; });	
			$ES('.moduletable_content', $('wrapper_bottom')).each(function(el){ el.setStyle("height", max+"px"); });	
		}		
	}
	//
	if($('stylearea')){
		$A($$('.style_switcher')).each(function(element,index){
			element.addEvent('click',function(event){
				var event = new Event(event);
				event.preventDefault();
				changeStyle(index+1);
			});
		});
		new SmoothScroll();
	}
});

		function endPart() {
		if($('popup_message')){
 		var popup_message = new Fx.Opacity('popup_message', {duration: 250}).set(0);
		}
		};