$(document).ready(function() {
	$("a#info-open").click(function(){
		$("#maker-info-data").slideDown("slow");
		});
	$("a#info-close").click(function(){
		$("#maker-info-data").slideUp("slow");
		});
	$("#maker-info-title a").click(function () {
		$("#maker-info-title a").toggle();
		});
	});


$(document).ready(function(){
	$("#parent2").wslide({
		width: 580,
		height: 300,
		pos: 1,
		horiz: true
		});
	});

$(function(){
	$('#tweets').tweetable({username: 'qtvr_master', time: true, limit: 5});
	});

$(document).ready(function(){
	$('.accordion_head').click(function() {
		$(this).next().slideToggle();
		}).next().show();
	});


$(document).ready(function() {
	$('#floatingbar').css({height: 0}).animate({ height: '50' }, 'slow');
	});

$(document).ready(function() {
	$("ul#tree").treeview({
		collapsed: true,
		animated: "medium",
		control:"#sidetreecontrol",
		persist: "location"
		});
	})

$(document).ready(function(){
	lastBlock = $("#a1");
	maxWidth = 150;
	minWidth = 55;
	$("ul#accordion li a").hover(
		function(){
			$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
			$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
			currentBlock = this;
			lastBlock = this;
			}
		);
	});


