// Global Functions



window.addEvent('domready',function(){
									
									
/* ------------------------------------------------------- Menu */

	var Logo = $('logo').getElements('a'),
		LogoPos = Logo.getStyle('backgroundPosition');
	Logo.addEvents({
		mouseenter: function(){
			this.morph({
				'background-position': '0 0'
			});
		},
		mouseleave: function(){
			// Morphes back to the original style
			this.morph({
				'background-position': '0 -36px'
			});
		}		
	});			

								
/* ------------------------------------------------------- Tabs */
	

		var tabs = new MGFX.Tabs('#foliobotnav .nav','.t1',{

			autoplay: true,

			transitionDuration:500,

			slideInterval:6000,

			hover:true

		});

		

	

	var pages = new noobSlide({

		box: $('mcontent_hold'),

		items: $$('#mcontent_hold div'),

		size: 950,

		handles: $$('#logo a').extend($$('#topnav ul li.inpage a')),

		onWalk: function(currentItem,currentHandle){

			<!--$('info4').set('html',currentItem.getFirst().innerHTML);-->

			this.handles.removeClass('active');

			currentHandle.addClass('active');

		}

	});		



/* ------------------------------------------------------- Websites */	

	var dropWEB = $$('#web div.left div.imgwrap')[0];

	$$('#web .right .imgwrap').each(function(item)

	{

		item.addEvent('click', function(e)

		{

			e = new Event(e).stop();

			dropWEB.removeEvents();

			dropWEB.empty()

			var a = item.clone();

			a.inject(dropWEB);

			dropWEB.style.height = "400px";

		});

	 

	});

/* ------------------------------------------------------- Websites End*/



/* ------------------------------------------------------- Identity */	

	var dropID = $$('#artwork div.left div.imgwrap')[0];

	$$('#artwork .right .imgwrap').each(function(item)

	{

		item.addEvent('click', function(e)

		{

			e = new Event(e).stop();

			dropID.removeEvents();

			dropID.empty()

			var a = item.clone();

			a.inject(dropID);

			dropID.style.height = "400px";

		});

	 

	});

/* ------------------------------------------------------- Identity End*/			



/* ------------------------------------------------------- Artworks */	

	var dropART = $$('#identity div.left div.imgwrap')[0];

	$$('#identity .right .imgwrap').each(function(item)

	{

		item.addEvent('click', function(e)

		{

			e = new Event(e).stop();

			dropART.removeEvents();

			dropART.empty()

			var a = item.clone();

			a.inject(dropART);

			dropART.style.height = "400px";

		});

	 

	});

/* ------------------------------------------------------- Artworks End*/	


/* ------------------------------------------------------- Contact */

$("form").submit(function(){

// 'this' refers to the current submitted form
var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "contact.php",
   data: str,
   success: function(msg){

$("#msg").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
$("#formwrap").hide();
}
else
{
result = msg;
}

$(this).html(result);

});

}

 });

return false;

});



/* ------------------------------------------------------- Contact */



});