$(document).ready(function() {
	
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	if($('body').is('.p-gallery')) {
		$('#photos').galleryView({
			panel_width: 500,
			panel_height: 375,
			frame_width: 30,
			frame_height: 30,
			overlay_height: 0,
			show_captions: false
		});
	}
	
	if($('body').is('.p-contact')) {
		$('#contact').validate();
	}
	
	$('.aside label').overlabel();
	
});
