$(document).ready(function(){
	$('.form-row input[type=checkbox]').prettyCheckboxes({
		checkboxWidth: 17,
		checkboxHeight: 17,
		display:'list'
	});
	$('.photo-frame a.lightbox').lightBox();
	$('select').selectbox();
	$('.photo-rotator').jCarouselLite({
		visible: 1,
		speed:1000,
		btnGo:[
		'ul.pages .1',
		'ul.pages .2',
		'ul.pages .3']
	});
	$('ul.pages a').click(function(){
		$('ul.pages li').removeClass();
		$(this).parent().addClass('selected');
	});
	
	// PJ: Open link in new window to avoid target="_blank" which causes invalid xhtml strict
	$(function(){    
		$('a.new-window').click(function(){
			window.open(this.href);        
	   		return false;    
	   	});
	});
	
});
