﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here

		$('.old').delay(2000).fadeOut(1200);
		$('.new').delay(2000).fadeIn(1200, function () {
			$('.coming-soon').fadeIn(1200);								 
		});

	}); 
})(jQuery);
