jQuery(function( $ ){
	initSlide();			
	$("div#carteco").slideView();
	$("div#tectus").slideView();
	$("div#yatzer").slideView();
	$("div#metropolitanexpo").slideView();
	$("div#rotaspot").slideView();
	$("div#ovalite").slideView();
	$("div#southstar").slideView();
	$('#proj').selectbox();	
	$('#budget').selectbox();
	

});

function initSlide(){
	var hash=self.document.location.hash.substring(1);
	if(hash!=""){
		hash="#" + hash;
		$.scrollTo( hash, 1500, { offset: -280 });
		$('a').removeClass('active');
		$('a', this).addClass('active');
	}
	$("#menu li").click(function() {
		var mylink = $('a', this).attr('href');
		$.scrollTo(mylink, 1500, { offset: -280 });
		$('a').removeClass('active');
		$('a', this).addClass('active');
	});
}
