jQuery(document).ready(function() {
	 jQuery('#tabvanilla > ul').tabs({ fx: [{opacity:'toggle', duration:'normal'},   // hide option
                        {opacity:'toggle', duration:'fast'}] });
});
$(document).ready(function() {
	$('.totop').click(function(){
		$('html, body').animate({scrollTop:0}, 800);
	});
});

jQuery(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	jQuery(".flickr").hover(function(){
		jQuery(this).stop().fadeTo("1000", 0.6); // This sets the opacity to 100% on hover
	
		
	},
	function(){
   		jQuery(this).stop().fadeTo("2000", 1.0); // This sets the opacity back to 60% on mouseout
	});
});





jQuery(function() {
    jQuery('.broll a').hover(function() {
        jQuery(this).stop().animate( {
            paddingLeft:"36px"
        }, "fast");
    }, function() {
        jQuery(this).stop().animate( {
            paddingLeft:"26"
        }, "fast");
    });
});
jQuery(function() {
    jQuery('#recent a').hover(function() {
        jQuery(this).stop().animate( {
            paddingLeft:"20px"
        }, "fast");
    }, function() {
        jQuery(this).stop().animate( {
            paddingLeft:"0"
        }, "fast");
    });
});

