jQuery(document).ready(function($) { 

	setTimeout('showVid()', 4000);
	//setTimeout('showLink()', 13000);

jQuery('#home_vid').hide();
});

function showVid()
{

jQuery('#home_vid').fadeIn('slow');

}
function showLink() {

jQuery('.button').fadeIn('slow');
	setTimeout('showLinkClickHere()', 3000);

}

function showLinkClickHere() {


jQuery('#home_vid_click_here').fadeIn('slow');

}
