$(document).ready(function(){
	//easing effects
	//page conatiner loader
	$('#loader').fadeOut('slow');
	$('#page-container').delay(500).fadeIn('slow');
	$('#content-area').delay(1000).fadeIn('slow');
	$('#top-strip').delay(1500).slideDown("slow");
	$('.footer-bg').delay(2000).slideDown('slow');
	$('.footer-artwork').delay(2500).fadeIn('slow');
	$('#footer,#back-top').delay(3000).slideDown("slow");
	//scroll back to the top
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	//companies lightbox info
	$(".company-logo,.left-logo").fancybox({
		'titlePosition'		: 'none',
				'overlayColor'		: '#fff',
				'overlayOpacity'	: 0.9
	});
	//close thanks msg after sending a message on the contacts page
   $('#thanks').fadeIn('slow');
	
});
//stroll to the top
	
