$(document).ready(function() {
	$('#logo').fadeIn(1000, function() {
		$('#logo').fadeOut(1000, function() {
			window.open('home.php', '_self');
		});
	});
	$('.home').fadeIn(1000);
	
	$('#itsaboutdetails').fadeIn(2000);
	$('#collection').fadeIn(1000);


  $('#collection-thumbs img').css('cursor', 'pointer');
  $('#collection-thumbs img').fadeTo(1, 0.7);
  $('#collection-thumbs img').click(function() {
    var src = $(this).attr('src');
    src = src.replace('thumbs', 'big');
    $('#collection-image img').attr('src', src);
  });
  
  $('#collection-thumbs img').mouseover(function() {
    $(this).fadeTo(1, 1);
  });
  $('#collection-thumbs img').mouseout(function() {
    $(this).fadeTo(1, 0.7);
  });
});
