$(document).ready(function(){

	// activate prettyPhoto lightbox for wishlist links
	var $toBePrettied = $(".gallery a[rel^='prettyPhoto']");
	if($toBePrettied.length) {
		$toBePrettied.prettyPhoto({theme:'facebook'});
	}
	
	// update appellation dropdown in the header if we've searched by appellation
	var $select = $('#searchbox select.appellation');
	var appellation = window.location.search.match(/appellation=\d{1,2}/);
	if (appellation) {
		appellation = appellation[0].substring(appellation[0].indexOf('=')+1);
	}
	if($select.length > 0 && appellation) {
		$select.val(appellation);
	}
});

