/* 
The Warehouse Agency
Digital Warehouse Agency
View and Control
*/
$(document).ready(function()
{
	$('.border-left, .border-right').click(function()
	{
		alert($(this).attr('id') + ' - ' + $(this).position().left);
	});
	$('.border-left, .border-right, #loader-logo').css({ 'height' : '0' });
	$('#skyline').css({ 'width' : '0' });
	$('.block-images').show();
	$('.block-images').css({ 'opacity' : '0' });
});

$(window).load(function () 
{
	$('#skyline').animate({ 'width' : '945' }, 2000, function()
	{
		$('#loader-logo').animate({ 'height' : '72' }, 1000, function()
		{
			initSkyline();
		});
	});
});
