﻿jQuery(document).ready(function(){	
	//Fade Side Features
	jQuery('#side_feature_1 h4, #side_feature_2 h4, #side_feature_1 p, #side_feature_2 p, #side_feature_1 a.contact_link, #side_feature_2 a.contact_link, #showcase').fadeTo('slow', 0.9);
	
	//Smooth Scroll
	jQuery('a[rel="scroll"]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
			&& location.hostname == this.hostname) {
			var jQuerytarget = jQuery(this.hash);
			jQuerytarget = jQuerytarget.length && jQuerytarget
			|| jQuery('[name=' + this.hash.slice(1) +']');
			if (jQuerytarget.length) {
				var targetOffset = jQuerytarget.offset().top;
				jQuery('html,body')
				.animate({scrollTop: targetOffset}, 1000);
				return false;
			}
		}
	});
	
	//External Link
	jQuery('a[rel="external"]').click(function(){
        window.open( jQuery(this).attr('href') );
        return false;
    });

	//Print Friendly
	jQuery('#print_friendly a').click(function() {
		window.print();
		return false;
	});

	
});
