var Utils ={
	container: null,
	
	init: function(){
		Utils.container = $('div#container');
		
	},
	
	contactUsToggle: function(){
		var contactUsElem = Utils.container.find('div.contactUs');
		if(contactUsElem.css('display') == 'none'){
			contactUsElem.show();
		}
		else
			contactUsElem.hide();
	}
	
}

$(document).ready(function() {
	Utils.init();
});