// True North JS
// Author: Georgios Athanassiadis
// Your Majesty Co.

/* Document ready */
$(function () {
	
	//IE6 PNGfix
	$('body').supersleight({shim: 'img/shim.gif'});
	
	//LINKS
	$('li#li-faq').click(function(){
		window.location = '/faq.htm';
	});
	
	$('li#li-contact').click(function(){
		window.location = '/contact.htm';
	});
	
	$('li#li-privacy').click(function(){
		window.location = '/privacy-policy.htm';
	});
	
	$('li#li-terms').click(function(){
		window.location = '/terms-of-use.htm';
	})
	
});
