/*
 *	jQuery Custom Functions
 *  By Simon Bouchard
*/

var j = jQuery.noConflict();

/* Application Showcase */
	
j(document).ready(function(){  	
		
	/* Application Showcase Slider */
	j('#slider').innerfade({
		animationtype: 'fade', 
		speed: '3000',
		timeout: 7000,
		type: 'sequence',
		containerheight: '353'
	});
	
	/* Client Testimonials Slider */
	j('#slider2').innerfade({
		animationtype: 'fade', 
		speed: '3000',
		timeout: 5000,
		type: 'sequence',
		containerheight: 'auto'
		});		
	
	/* Table Style */  	
	j("#table-a tr:odd").addClass("odd");	

});	

