/**
* insequent global container
* @namespace
*/
inSequent = {

	/**
	* Foce li:hover event on IE 6
	* @function
	*/
	menuInit:function(){
		/* IE6 li:hover hack */
		$('#header ul li').mouseover(function(){
			$(this).addClass('current');
		});
		
		$('#header ul li').mouseout(function(){
			$(this).removeClass('current');
		});			
	}
}

/**
* Pages Container
* @namespace
*/
inSequent.pages = {};

/**
* Our Product Pages Container
* @namespace
*/
inSequent.pages.ourProduct = {};

/**
* Our Product > princing 
* @namespace
*/
inSequent.pages.ourProduct.pricing = {
	
	/**
	* Start Princing Methods
	*
	*/
	init:function(){
		$('table td:odd').attr('align','right');
	}
};

/**
* Mobile 101 Container
* @namespace
*/
inSequent.pages.mobile101 = {};

inSequent.pages.mobile101.whoIsUsing = {
	init:function(){
		$(function() {
				   
				   
			// Dialog Link
			$('img.chartWho').click(function(){
				console.info('call full image');
			});
			

		});
	}	
}




$(function(){
	inSequent.menuInit();
});
