// JavaScript Document
$(function() {
	
	//Turn On Tab 
	
	$("h1").appendTo("#foo"); 
	$("#main").fadeOut(0).fadeIn(3000);
	$("h1").wrap("<div id='quebec1'>");
	var cssObj=
		{
			'position':'absolute',
			'top':217,
			'margin-left':27,
			'overflow':'hidden',
			'height':0,
			'width':38
		};
	$("#quebec1").css(cssObj);
	$("#quebec1").animate( { height:44 }, { queue:false, duration:4000, complete: function(){
	
				$( this ).animate({width: 167},'slow');

	} } )
	


});