/* toggle and tabs removed */

/*	IMAGE HOVER */

$(function() {
$('.button, .flickrpress img, ul.works img, .gallery img').css("opacity","1.0");	
$('.button, .flickrpress img, ul.works img, .gallery img').hover(function () {										  
$(this).stop().animate({ opacity: 0.75 }, "fast"); },	
function () {			
$(this).stop().animate({ opacity: 1.0 }, "fast");
});
});

$(function() {
$('.attachment-blog_thumb, #submit-button').css("opacity","1.0");	
$('.attachment-blog_thumb, #submit-button').hover(function () {										  
$(this).stop().animate({ opacity: 0.80 }, "fast"); },	
function () {			
$(this).stop().animate({ opacity: 1.0 }, "fast");
});
});



/*	GALLERY IMAGE LOAD */
        
$(document).ready(function(){
			
			$("ul.gallery img").hide()
			$("ul.gallery img").each(function(i) {
			  $(this).delay(i * 200).fadeIn();
			});
			
});
