$(document).ready(function(){
	
	$("body").addClass("js");

	// "Sexy Curls" Plugin
	$("#pageCurl").fold({
		directory: 'turn',
		side: 'right',
		maxHeight: 180,
		autoCurl: true
	});
	$("#turn_object").click(function() {
		window.open("http://modilingua.com/");
		return false;
	});
	
	// "Tipsy" Tooltip Plugin
	// $("a").tipsy({
	// 	gravity: "s",
	// 	fade: true
	// });
	
	// Open Off-site Links in new Window
	$("a[rel=external], #pageCurl").click(function() {
		window.open(this.href);
		return false;
	});

});