$(document).ready(function(){
	/* SERVICES TABS */
	
	var event_txt = "When it comes to planning events for any occasion, our enthusiastic event coordination team will dedicate their time to plan and carry out memorable events.  We provide a full range of coordinating services to make sure event is ran accordingly, including novel advertising poster, event program manual, creative accessories design, get in touch with artists and performers, production studios, music and lighting crews, and event-live organization.  We would make sure your budget is well-spent."
	
	var business_txt ="We commit to take care of our client's needs through strategic planning, budget cost control, business consultation services.  The Intelli consultants will discuss and communicate the idea with our team of designers, and makes sure the blueprint meets your expectations.  Services include conducting comprehensive market research, setting sales approaches and tactics, keeping track of records, and presenting information with the latest innovative design and technology.  The Intelli staff will ensure to strike a balance between customer goal, time, and budget.  We will work with you closely and support your company both throughout and after the implementation."
	
	var infotech_txt="Intelli Design+Technology offers technical development.  Our programmers are responsible for designing applications and programs.  As technologies evolve every second, there is a need for updated information and constant improvements, in order to be competitive in the global market.  Our team of technological experts will improve and innovate with the latest technology to the needs of our clients.  We make sure your website is tidy, informative and feasible.  We provide continual support after the development and deal with any technical difficulties.  "
	
	var translate_txt="Intelli's professional team of translators allow our clients to connect and communicate to a wider range of multicultural groups.  Our skilled Technical Editors provide proficient translations in multiple languages, such as English, Chinese, and Japanese.  "
	
	var marketing_txt="Intelli has a professional sales team to allow clients to communicate with their target market.  Everything starts with the initial consultation with prospective customers.  We study extensively in customer behaviour and market trend.  Subsequently, we craft the blueprint with your inputs, and finalize the plan that meets your objectives.  Paul Tam, our founder, has a wealth of marketing experience in China, Asia-Pacific, and North America.  He has over 15 years of experience in both business and Information Technology sectors.  With his broad experience leadership, in combination with Intelli Design+Technology's in-house marketing and design team, we will provide effective marketing service and open the potential market for your company."
	
	$('#service_tab_event').bind('click',function(){
		$('#service_main_paper h1').html('Event Coordination');
		$('#service_main_paper p').html(event_txt);
	});
	
	$('#service_tab_busi').bind('click',function(){
		$('#service_main_paper h1').html('Business Solution');
		$('#service_main_paper p').html(business_txt);
	});
	
	$('#service_tab_info').bind('click',function(){
		$('#service_main_paper h1').html('Information Technolgy');
		$('#service_main_paper p').html(infotech_txt);
	});
	
	$('#service_tab_translate').bind('click',function(){
		$('#service_main_paper h1').html('Translation Service');
		$('#service_main_paper p').html(translate_txt);
	});
	
	$('#service_tab_marketing').bind('click',function(){
		$('#service_main_paper h1').html('Marketing');
		$('#service_main_paper p').html(marketing_txt);
	});
	
});
