jQuery(document).ready(function($) {
	$("ul.sf-menu").superfish({
		autoArrows: false,
		delay: 500, // one second delay on mouseout
		animation: {opacity:'toggle', height:'show'}, // fade-in and slide-down animation
		speed: 500, // faster animation speed
		autoArrows: false, // disable generation of arrow mark-up
		dropShadows: false // disable drop shadows
	});
	
	$("#grid-content").vgrid({
		easeing: "easeOutQuint",
		time: 500,
		delay: 0
	});
	
	$(window).load(function () {
		$("#grid-content").vgrid({
			easeing: "easeOutQuint",
			time: 500,
			delay: 0
		});
	});
	
	
	

	

	
	$("#tweets").tweet({
          join_text: "auto",
          username: twitterlogin,
          avatar_size: 48,
          count: 5,
          auto_join_text_default: "", 
          auto_join_text_ed: "",
          auto_join_text_ing: "",
          auto_join_text_reply: "",
          auto_join_text_url: "",
          loading_text: "loading tweets..."
        });
	$("#twitter_toggle").click(function () {
		$("#tweets").slideToggle(400);
		return false;
	});
	
	
});




