// JavaScript Document

$(document).ready(function(){
// MessageStack Slider						   
	$("#messageStack").hide();
	$("#messageStack").slideDown("slow",function(){
		this.timer=setTimeout('$("#messageStack").slideUp("slow")',5000);
	});

// Login Slider
	$(".show_login").click(function () {
		$("#login").slideToggle("slow");
	});

// List Slider
	$("#list").accordion({ 
		active: false, 
		header: 'h1', 
		navigation: true, 
		event: 'click', 
		animated: 'easeslide'
	});
	$("#list h1").click(function () { 
      $('#counter').load("faq_counter.php?id=" + this.id)
    });

// Tweet Loader
	$(".tweet").tweet({
		username: "amv2",
		join_text: "auto",
		avatar_size: 32,
		count: 5,
		auto_join_text_default: "we said,",
		auto_join_text_ed: "we",
		auto_join_text_ing: "we were",
		auto_join_text_reply: "we replied to",
		auto_join_text_url: "we were checking out",
		loading_text: "loading updates..."
	});

//Fancy Tool Tips
	$("#fancy, #fancy2").tooltip({
		track: true,
		delay: 0,
		showURL: false,
		fixPNG: true,
		showBody: " - ",
		extraClass: "pretty fancy",
		top: -15,
		left: 5
	});
	$('#pretty').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - ",
		extraClass: "pretty",
		fixPNG: true,
		left: -120
	});
	

// FancyBox 700x600
	$("a.fancy_external").fancybox({
		'hideOnContentClick': false,
		'width': 700,
		'height': 700,
		'autoScroll': true
	});
//Fancy Images
	$("a.fancy_group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});

});
