// JavaScript Document
// olp0510.js

// hide tnc div/show tnc on click of Terms & Conditions button
$(document).ready(function(){
	var nH = $('#tnc').outerHeight();
	$('#tnc').fadeOut(10);
	var bH = $('body').height();
	$('#footer img').click(function(){
		if ($('#tnc').css('display') == 'none') {
			$('#tnc').fadeIn('fast');
			$('body').css('height',nH+bH+'px') ;
		}else{
			$('#tnc').fadeOut('fast');
			$('body').css('height',bH+'px') ;
		}
	});
	$('#main-head').supersleight();
});