$(document).ready(function(){

  $('#stripe1').children('img:first').css('opacity', '0.0');
  $('#stripe2').children('img:first').css('opacity', '0.0');
  $('#stripe3').children('img:first').css('opacity', '0.0');
  $('#stripe4').children('img:first').css('opacity', '0.0');
  $('#stripe5').children('img:first').css('opacity', '0.0');

  $('a.stripe').hover(
    function(e){
      $(this).children('img:first').hoverFlow(e.type, { opacity: 1 }, 'slow');
    },
    function(e){
      $(this).children('img:first').hoverFlow(e.type, { opacity: 0 }, 'slow');
    }
  );
  
  $('#thumbs > li > a').click(function(e){
        e.preventDefault();
		
		var link = $(this);
		
		$('#img_big').attr('src', $(link).attr('href'));
		$('#img_desc').html($(link).children('img:first').attr('alt'));
		
		return false;
  });

  $('#stripe_right').height($('#content_box').height());

});


$(window).load(function () {
	//if stripe_right isnt already the desired height here it sure will be
	$('#stripe_right').height($('#content_box').height());
});