$(document).ready(function(){

	// Change All Blank a tags to js ones 
	$('a[href=#]').attr('href', 'javascript:void(0);');
	
	// Kill No JS Class
	$('.noJs').removeClass('noJs');

	// Show Hide Non JS Version
	$('.showElem').removeClass('showElem');
	$('.hideElem').addClass('hiddenElem');
	
	
	// Remove Video Link
	$('.showHeadrest').attr('href', 'javascript:void(0);');
	
	// Head Rest
	$('.showHeadrest').click(function() {
	
		$.scrollTo( 0, { duration:500, axis:'y', onAfter:function(){
		    $('#headrest').animate({
		    	marginTop: '0px'
		  	}, 1000, function() {
		    	// Animation complete.
		  	});
		}});
	
	});
	$('.hideHeadrest').click(function() {
	
		$.scrollTo( 0, { duration:500, axis:'y', onAfter:function(){
		    $('#headrest').animate({
		    	marginTop: '-563px'
		  	}, 1000, function() {
		    	// Animation complete.
		  	});
		}});
	});
	
});

