$(document).ready(function()
{
    // Effect settings
    var effectName = "drop";
    var effectOptions = { direction: "up" };
    var effectSpeed = 300;

    $("#php1,#php2,#php3,#php4,#php5,#java1,#java2,#java3,#java4,#java5,#vb1,#vb2").bind 
    (
        "click", function()
        {
            $("#" + $(this).attr("id") + "desc")
            .toggle(effectName, effectOptions, effectSpeed, function() { });
            /**.toggle();**/
            /** $(this).text("DDD"); TODO: CHange text **/
            return false;
        }
    );

    $("#web1,#web2").bind 
    (
        "click", function()
        {
            $("#" + $(this).attr("id") + "dialog").dialog('open');
        }
    );

    $(function() {
    	$('#gallery a').lightBox(); // Select all links in object with gallery ID
    });
});
