$(document).ready(function() {

	$('#logo').fadeIn(1000, function() {
		$('#logo').fadeOut(1000, function() {
			window.open('show.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');
    var title = $(this).attr('title');
    src = src.replace('_small', '');
    $('#collection-big img').attr('src', src);
    $('#collection-title').html(title);
  });
  
  $('#collection-thumbs img').mouseover(function() {
    $(this).fadeTo(1, 1);
  });
  $('#collection-thumbs img').mouseout(function() {
    $(this).fadeTo(1, 0.7);
  });
  
	// Colrobox
	//$('#press-thumbs a').colorbox();
});

