/*
* jQuery Style
* by http://WWW.kb-labuan.com
*/

$(document).ready(function(){

//spa hover funtion
  $("#spa_billing #isi_news ul li").hoverIntent(makeTall,makeShort);
//news links function
  $('#left_news a.new_color').click(function(){
	$('#new_color').animate({ width: '620px' });
	$('#add_on').animate({ width: '0px' });
	$('#spa_billing').animate({ width: '0px' });
	$('#inventory_software').animate({ width: '0px' });
	$('#web_design').animate({ width: '0px' });
	});

  $('#left_news a.add_on').click(function(){
	$('#add_on').animate({ width: '620px' });
	$('#new_color').animate({ width: '0px' });
	$('#spa_billing').animate({ width: '0px' });
	$('#inventory_software').animate({ width: '0px' });
	$('#web_design').animate({ width: '0px' });
	});

  $('#left_news a.spa_billing').click(function(){
	$('#spa_billing').animate({ width: '620px' });
	$('#new_color').animate({ width: '0px' });
	$('#add_on').animate({ width: '0px' });
	$('#inventory_software').animate({ width: '0px' });
	$('#web_design').animate({ width: '0px' });
	});

  $('#left_news a.inventory_software').click(function(){
	$('#inventory_software').animate({ width: '620px' });
	$('#new_color').animate({ width: '0px' });
	$('#add_on').animate({ width: '0px' });
	$('#spa_billing').animate({ width: '0px' });
	$('#web_design').animate({ width: '0px' });
	});

  $('#left_news a.web_design').click(function(){
	$('#web_design').animate({ width: '620px' });
	$('#new_color').animate({ width: '0px' });
	$('#add_on').animate({ width: '0px' });
	$('#spa_billing').animate({ width: '0px' });
	$('#inventory_software').animate({ width: '0px' });
	});


  $('#close_button ul li').click(function(){
    $('#web_design').animate({ width: '0px' });
    $('#new_color').animate({ width: '0px' });
    $('#add_on').animate({ width: '0px' });
    $('#spa_billing').animate({ width: '0px' });
    $('#inventory_software').animate({ width: '0px' });
  });

});

	function makeTall(){  $(this).animate({"height":330},200);}
	function makeShort(){ $(this).animate({"height":20},200);}

/*
$(document).ready(function(){
var duration = 550; //time in milliseconds

	 $('#left_news a.new_color').click(function() {
	    $('#new_color').animate({ width: '620px' }, duration);
	     };

	 $('#left_news a.add_on').click(function() {
	    $('#add_on').animate({ width: '620px' }, duration);
	     };

	 $('#left_news a.spa_billing').click(function() {
	    $('#spa_billing').animate({ width: '620px' }, duration);
	     };

	 $('#left_news a.inventory_software').click(function() {
	    $('#inventory_software').animate({ width: '620px' }, duration);
	     };

	 $('#left_news a.web_design').click(function() {
	    $('#web_design').animate({ width: '620px' }, duration);
	     };
});*/











