var App = {
	init: function (){
		if($.url.segment(0) == 'showroom') {
			$('ul.item li img').load(App.scroll());
		}
		App.external_link();
	},
	scroll: function(){
		$($.browser.safari ? 'body' : 'html').animate({scrollTop: $('.showroom-detail h2').offset().top}, 800, "swing");
	},
	external_link: function(){
		$('a[rel=external]').click(function (){
			window.open(this.href,'');
			return false;
		});
	}
};

$().ready(function(){
	App.init();
});
