
$(function() {

    /* PORTFOLIO */

    $(".anythingThumbnails").each(function() {
        $("img:first", this).addClass("Selected");
    });

    $(".anythingThumbnails img").click(function() {
        var SRC = $(this).attr("src");
		
        var ID = $(this).parent().parent().attr("id");		
		$("#" + ID + " .anythingImage img").hide().delay(200).fadeIn().attr("src", "" + SRC + "");
        $(".anythingThumbnails").slideUp().delay(200).slideDown();

        $(this).parent().children().removeClass("Selected");
        $(this).addClass("Selected");
				
		var CLASSID = $(this).attr("title");
		$("#" + ID + " .anythingImage a").attr("href","http://" + CLASSID + "");
		
		$("#" + ID + " .anythingImage a[href='http://']").attr("href","javascript:void(0)");
		
    });

    $(".wrapper li").each(function() {
        $(".anythingThumbnails", this).after("<div class='anythingImage'><a href='javascript:void(0)'><img class='firstImage' src='images/slide-civil-1.jpg' alt='' /></a></div>");
        var SRC = $(".anythingThumbnails img:first", this).attr("src");
        $(".anythingImage img", this).attr("src", "" + SRC + "");
    });

    $('.thumbNav').hide();
    $('.anythingThumbnails').hide();
    $('.anythingTitle').hide();
    $('.anythingSlider').hover(function() {
        $('.thumbNav').fadeIn();
        $('.anythingThumbnails').fadeIn();
        $('.anythingTitle').fadeIn();
    }, function() {
        $('.thumbNav').fadeOut();
        $('.anythingThumbnails').fadeOut();
        $('.anythingTitle').fadeOut();
    });
	
	$("img[alt*=Flickr]").attr("title","");

});