﻿$(function() {
	var $entity = $('.entity-page');
	if($entity.size() > 0) {
		//sorting and paging
		$entity
			.find('.gallery .options select')
			.change(function() {
				location.href = $(this).val();
				return false;
			});
	}
	
	//all offsite links open in a new window
	$("a").filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');

});
	
