$(document).ready(function() {

    //EVENTS FOR TABS
    
    $('#appdev_button').click(function(){
    
    if ($('#appdev_area').css('display') == 'none')
    {
        $('#appdev_area').fadeIn("slow");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').css("display","none");
    }
    else{
        $('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').css("display","none");
       }

	});
	$('#busmgmt_button').click(function(){
        if ($('#busmgmt_area').css('display') == 'none')
        {	
    	$('#appdev_area').css("display","none");
    	$('#busmgmt_area').fadeIn("slow");
       	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').css("display","none");
    	}
        else{
        $('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').css("display","none");
       }

	});
	$('#projectmgmt_button').click(function(){
	    if ($('#projectmgmt_area').css('display') == 'none')
        {	
    	$('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').fadeIn("slow");
       	$('#webdesign_area').css("display","none");
       	$('#softwaresolutions_area').css("display","none");
       	}
       	else{
        $('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').css("display","none");
       }
   

	});
	$('#webdesign_button').click(function(){
		if ($('#webdesign_area').css('display') == 'none')
        {
    	$('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').fadeIn("slow");
    	$('#softwaresolutions_area').css("display","none");
    	}
    	else{
        $('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').css("display","none");
       }
   

	});
		$('#softwaresolutions_button').click(function(){
		if ($('#softwaresolutions_area').css('display') == 'none')
        {
    	$('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').fadeIn("slow");
    	}
    	else{
        $('#appdev_area').css("display","none");
    	$('#busmgmt_area').css("display","none");
    	$('#projectmgmt_area').css("display","none");
    	$('#webdesign_area').css("display","none");
    	$('#softwaresolutions_area').css("display","none");
       }
   

	});
	
});


