/*
 * Site js Functions
 *
 */
  
$(document).ready(function() {

	// Slideshow
	$('ul#sqimgs').innerfade({
		speed: 1000,
		timeout: 4500,
		type: 'sequence'
	});
	
	// open external links in new window (without classes)
	$("a[href*='http://']:not([href*='http://www.cmdesignconsultants.com']),[href*='https://']:not([href*='http://www.cmdesignconsultants.com'])").click(function() {
		window.open(this.href);
		return false;
	});
	
	// Select all links that contains lightbox in the attribute rel
	$("a[rel*=lightbox]").lightBox();

});

