$(document).ready(function(){

    // Twitter feed
    var script1 = document.createElement('script');
    script1.type = 'text/javascript';
    script1.src = "http://twitter.com/javascripts/blogger.js";

    var script2 = document.createElement('script');
    script2.type = 'text/javascript';
    script2.src = "http://twitter.com/statuses/user_timeline/teambizstream.json?callback=twitterCallback2&count=1";

    // Add the Script to the #twitter_update_list element
    $("#twitter_update_list").append(script1);
    $("#twitter_update_list").append(script2);
    //---/ End Twitter feed
    
    
    
    // Products page switcher
    //$(".packagesContainer").css("height", $(".overview").height());

    $("#pricing").click(function() {
        $(".overview").fadeOut('fast', function() {
            $(".packagesContainer").fadeIn('fast');
        });

        $("#overview").removeClass('active');
        $("#pricing").addClass('active');
    });

    $("#overview").click(function() {
        $(".packagesContainer").fadeOut('fast', function() {
            $(".overview").fadeIn('fast');
        });

        $("#pricing").removeClass('active');
        $("#overview").addClass('active');
    });
    //---/ End Products page switcher
    
    

    // Two Column Border Adjustment
    	if($(".containerRight").height() < $(".containerLeft").height()){
    		$(".containerRight").css("height", $(".containerLeft").height());
    	}
    	
    if($(".services_icon").length > 0) {
    	//$(".services_icon").unwrap();
    }

});

