// CRITIT HOLDS HANDS WITH THESE
	
$(document).ready(function(){
	
	$(document).pngFix();
  
  	$('.logging-in').hide();
  	
  	$("#tabs").tabs({
		event: 'mouseover'
	});
  	
  	$('a.show-logging-in').click(function() {
		$('.logging-in').show();
    	return false;
	});

	//THIS FADES THE RANDOM PORTFOLIO IMAGES
	
	$('.portfolio-fader ul#portfolio').innerfade({
		speed: 1000,
		timeout: 2000,
		type: 'sequence',
		containerheight: '355px'
	})
	
	//CREATES ALTERNATING STRIPES ON THE TABLES
	
	$(".stripe tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".stripe tr:even").addClass("alt");

	
});
