$(document).ready(function() {
	var html = '<div id="support"><p>We are unable to support <b>Safari</b> for this page, You may view these videos on our <a target="_blank" href="http://www.vimeo.com/user2306691">Vimeo page here.</a></p></div>';
	
	
	if ($.browser.safari) {
		
		$('body').prepend(html);
		$('#support').fadeTo(1, 0, function() {
			$(this).css({'position':'absolute','z-index':'10000','background':'yellow','font-size':'20px','color':'#000','width':'100%','top':'-130px', 'padding' : '30px 0 40px 0'});
			$(this).fadeTo(1, 1);
		});
		$('#support').fadeTo(3000, 1, function() {
			$(this).animate({top : '0px'}, 1000);
			$(this).fadeTo(20000, 1, function() {
				$(this).animate({top : '-130px'}, 1000);
			});
		});
		
		
	}
});