var Nissan = function Nissan(){
	
	var $this = this;
	
	$this.init = function(){
		
		// this is the page's initialisation
		// tagging plan goes here..
		
	};
	
};

$(function domReady() {
	(new Nissan()).init();
});
