jQuery(document).ready(function() {
// No spam, please
    jQuery('a.addy').each(function(i) {
        var text = $(this).text();
        var address = text.replace(" at ", "@");
        jQuery(this).attr('href', 'mailto:' + address);
            jQuery(this).text(address);
	});
    
    jQuery('h4.changeText').each(function(i) {
        var btraText = $(this).text();
        var btra = btraText.replace("Battlespace Terrain Reasoning and Awareness", "BTRA");
            jQuery(this).text(btra);
	});
    
    
        
// Home Page Slide Show
	jQuery('#home_slider').css('overflow','hidden');
    jQuery('#home_slides').before('<div id="home_slides_nav">').cycle({
        fx:			'fade',
        speed:		500,
        timeout:	5000,
        pager:		'#home_slides_nav'
    });
	
// Fade Out Thumbnails
	jQuery("#filter-portfolio").delegate("li", "mouseover mouseout", function(e) {
		if (e.type == 'mouseover') {
		jQuery("#filter-portfolio li").not(this).dequeue().animate({opacity: "0.35"}, 300);
    	} else {
		jQuery("#filter-portfolio li").not(this).dequeue().animate({opacity: "1"}, 300);
   		}
	});
    
//Fadeout Gallery
    jQuery("#detailed-left").delegate("img", "mouseover mouseout", function(e) {
		if (e.type == 'mouseover') {
		jQuery("#detailed-left img").not(this).dequeue().animate({opacity: "0.35"}, 300);
    	} else {
		jQuery("#detailed-left img").not(this).dequeue().animate({opacity: "1"}, 300);
   		}
	});
});
