$(document).ready(function(){
	$('#slider').nivoSlider();
});


$(window).load(function() {
	$('#container').css({display:'block'});
	
	switch (location.hash){
		case '#portfoliolink': $('html,body').animate({scrollLeft: $('#portfolio').offset().left-(+60)}, 1000);
		break;
		case '#services': $('html,body').animate({scrollLeft: $('#services').offset().left}, 1000);
		break;
		case '#contactuslink': $('html,body').animate({scrollLeft: $('#column_3').offset().left-(+60)}, 1000);
		break;
		default: $('html, body').stop().animate({scrollLeft: $('#home').offset().left}, 0);
		break;
	}
	
	//$('body').stop().animate({scrollLeft:1600}, 111);

/* 	hash = window.location.hash;
	if ((hash.indexOf('#') == 0) && (hash != '')) {
		$.trigger("click");

	}else {

		$('html, body').animate({scrollLeft: $('#home').offset().left-(($(window).width()/2)-510+20)}, 'slow').trigger('click');
	}*/

});

