$(document).ready(function(){
	
	// fix PNGs for IE6
	$(document).pngFix();
	
	// fix "external" links to open in new window									 
	$('a[rel="external"]').click(function(){
		window.open(this.href);
		return false;
	}).attr('title', 'Opens in New Window or Tab');

	// shingle gauge demo window
	$("a.demoPopup").click(function(){
		window.open(this.href,'demowindow','width=500, height=500, scrollbars=0, resizable=0, location=0');
		return false;
	});
	
	if($("#hero").length) {
		$("#hero").cycle({
			speed:400,
			timeout:5000,
			pause:true
		});
	}
	
});

