$(document).ready(function() {
	/*	TOOLS TIPS	*/
	$('a.normalTip').aToolTip();
	/*	CLOCK	*/
    $('.jclock').jclock();
	/*	SLIDESHOW	*/
	$('#splash').cycle({ 
	fx: 'fade', 
	cleartype:  1, // enable cleartype corrections 
	cleartypeNoBg: true,
	random: 1,
	speed: 2000,
	timeout:  5000
	});
	/*	TWITTER	*/
	$("#twitter").tweet({
    	join_text: "auto",
    	username: "InterManagerOrg",
    	avatar_size: 0,
    	count: 1,
    	auto_join_text_default: "", 
    	auto_join_text_ed: "",
    	auto_join_text_ing: "",
    	auto_join_text_reply: "",
    	auto_join_text_url: "",
    	loading_text: "gathering tweets...",
		template: function(i){return i["text"]}
  	});
	$('#retweet').click(function(e){
		window.open('http://twitter.com/home?status=' + encodeURI('RT: @intermanagerorg ' + $('.tweet_text').text()));
		e.preventDefault();
	});
	/*	BAROMETER	*/
	$('.continent-btns a').click(function(){
		switch_tabs($(this));
		return false;
	});
	
	switch_tabs($('.defaulttab'));
	
	/*	DROP DOWN MENU	*/

	$("ul.menu li").hover(function() {
		$(this).find('ul.sub-menu').filter(':not(:animated)').animate({ "height": "show", "opacity": "show" }, 200 );
	}, function(){
		$(this).find('ul.sub-menu').animate({ "height": "hide", "opacity": "hide" }, 200 );  
	});
	
});

function switch_tabs(obj)
{
	$('.tab-content').hide();
	$('.continent-btns a').removeClass("selected");
	var id = obj.attr("rel");

	$('#'+id).fadeIn('slow');
	obj.addClass("selected");
	
}

