
$(document).ready(function (){
	$('#bar-float').animate ({
		"opacity" : 1
	});
});


$(document).ready(function () {
	$('.about-box').hide()
	
		$('.anchorLink').click(function(){
		$('.about-box').slideDown(100)
	
	});
});

$(document).ready(function () {
  // IE6 doesn't handle the fade effect very well - so we'll stick with
  // the default non JavaScript version if that is the user's browser.
  alert('>>>foooo');
 if ($.browser.msie && $.browser.version < 7) return;
  
  $('.thumb').find('a').append('<span class="hover" />').each(function () {
      
      var $span = $('> span.hover', this).css('opacity', 0);
      if ($.browser.mozilla) {
        $('.hover').css('margin-top', '-9px');
      }
      
      $(this).hover(function () {

        $span.stop().fadeTo('fast', 1);
      }, function () {
        // off hover
        
        // again, stop any animations currently running, and fade out
        $span.stop().fadeTo('slow', 0);
      });
    });
  
 /* var el = $('.thumb');
  
  el.hover(function(){
  
  	$(this).animate({
  	    backgroundColor :
  	  }, 5000, function() {
  	      // Animation complete.
  	    });	
  
  }, function(){
  
  });*/
  
   
});



$(document).ready(function (){
		var pos = $(".image-list img").position(); // returns an object with the attribute top and left
		pos.top;  // top offset position
		pos.left; // left offset position
		
		console.log(pos.top);
		if($(".image-list img"))
});

/*
$(document).ready(function (){
	
		$('.about-box').hide()
		
		$(window).scroll(function (){
		
		var y = $(window).scrollTop();
		
		$('.anchorLink').click(function() {
				$('.about-box').slideDown()
		});
		
		if (y <= $('#last-list').offset().top) {
			$('.about-box').slideUp(1000)	
		} 
		
	});
});
*/
