// jQuery document that will be called when the page is loaded
$(document).ready(function(){
	$("a#fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200
	 });
    $('.shuffleleft').cycle({
		fx: 'fade'
	});
    $('.shuffleright').cycle({
		fx: 'fade'
	});
	
	$('#search_pager').change(function(){
		$('#search_form').submit();							   
	});
	
	$('#pm_pager').change(function(){
		window.location = this.value;					   
	});

});

