window.addEvent('domready', function() {
	// HERE IS WHAT' YOU READ IN JS CODE

	new SmoothScroll();
	
	port = $('portcontent');
	var fx = new Fx.Styles(port, {
		duration: 500,
		wait: false,
		transition: Fx.Transitions.Quad.easeInOut
	})
 	
	$('nextPic').addEvent('click', function(e){
		var lft = port.getStyle('left').toInt()-483;
		
		//alert(port.getStyle('left').toInt() + " " + port.getStyle('width').toInt()*-1);
		if(lft < port.getStyle('width').toInt()*-1+483) lft = port.getStyle('left').toInt();
		  fx.start({
			'left': lft
		})  
		new Event(e).stop();
	});
	
	$('prevPic').addEvent('click', function(e){
		var lft = port.getStyle('left').toInt()+483;
		if(lft > 0) lft = 0;
		  fx.start({
			'left': lft
		})  
		new Event(e).stop();
	});
	
	$('fmlmap').addEvent('click',function(e){
		myRef = window.open('http://maps.google.com/maps?f=d&hl=en&geocode=&time=&date=&ttype=&saddr=2.92849,101.642911&daddr=&mra=dme&mrcr=0&mrsp=0&sz=16&sll=2.925812,101.643212&sspn=0.009601,0.020084&ie=UTF8&z=16&om=1','Flavert Media Lab Location')

		new Event(e).stop();
	});
	
});

