jQuery(document).ready(function(){

	jQuery('#dHome').jqDock({align:'bottom',labels:'br'});
	jQuery('#dPics').jqDock({align:'bottom',labels:'bl'});
	$('#home').css('visibility','visible');
	$('#pics').css('visibility','visible');
	$(".idle").fadeTo(1,.3);
	$('div#dock a>img').bind('click', function(){
        var Href = $(this).parent().get(0).href;
        if(Href && !/^javascript:/i.test(Href)){ //change location...
          location.href = Href;
        }else{ //trigger a click handler?...
          $(this).parent().trigger('click');
        }
        return false;
      });

	//HOVER FADES FOR IMG NAVIGATION
    $(".idle").mouseover(function() {
    	$(this).fadeTo(1300,1);
    });
    $(".idle").mouseout(function() {
    	$(this).fadeTo(1300,.3);
    }); 
});