$(document).ready(function(){
	if($(".gallery").length > 0){
		$(".gallery a").colorbox();
	}
	
	// new window popper-upper
	if( $( ".new-window" ).length > 0 ) {
		$( ".new-window" ).bind( "click", function() {
			window.open( $( this ).attr( "href" ) );
			return false;
		} );
	}
});
