$ = jQuery;

// JavaScript Document
function searchselect(select)
{
	url = document.getElementById('searchform').action + '/?s=';
	page = select.name;
	id = select.options[select.selectedIndex].value;

	if (id != '')
		document.location.href = url + id + '&type=' + page;
}

function liste_spect_link(div)
{
	document.location.href = document.getElementById(div.id + 'a');
}

function switchSearch(elt){
	if ($(elt).hasClass('opened')){
		$("#searchFormBody").hide();
		$("#searchFormFoot").hide();
		$(elt).html("&raquo");
	} else {
		$("#searchFormBody").show();
		$("#searchFormFoot").show();
		$(elt).html("&laquo");		
	}
	$(elt).toggleClass('opened');
}

$(document).ready(function() 
{
	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
});
