
window.addEvent('domready', function() {
									 
	$('tab1').addEvent('click', function(e) {
		new Event(e).stop();
		$('product_form').style.display = 'none';
		$('service_form').style.display = 'block';
		$('tab1').addClass('active');
		$('tab2').removeClass('active');
		
	});	
	
	$('tab2').addEvent('click', function(e) {
		new Event(e).stop();
		$('product_form').style.display = 'block';
		$('service_form').style.display = 'none';
		$('tab2').addClass('active');
		$('tab1').removeClass('active');
		
	});	
	
	
});
