var xmascard = { src: '/content/scripts/xmascard.swf' };
sIFR.activate(xmascard);

sIFR.replace(xmascard, {
  selector: 'h1',
  css: '.sIFR-root { color: #222222; }'
});


$(document).ready(function() {

	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'light_rounded',
		slideshow:5000, 
		autoplay_slideshow:true
	});
	
	$("#commercial-gallery").hide();
	

	$("#comminstall").click(function(e) {
		e.preventDefault();
		$("#residential-gallery").hide();
		$("#commercial-gallery").show().css({ opacity: 0 }).fadeTo("slow", 1);

	});

	$("#resinstall").click(function(e) {
		e.preventDefault();
		$("#commercial-gallery").hide();
		$("#residential-gallery").show().css({ opacity: 0 }).fadeTo("slow", 1);
	});
	
});


