$(document).ready(function() {
	
	get_photos();
	// ON CHANGE EVENTS
	$('#album_id').change(function() {
	  get_photos();
	});

});


function get_photos() {
	var a_id = $('#album_id').val();
	var v_id = $('#venue_id').val();
	$('#recentphotos').load('/index.php/venues/venuephotos',{album_id:a_id,venue_id:v_id},function(){
			$("a.venue-thumb").fancybox({
				'hideOnContentClick': false
			});	
	}).hide().fadeIn('slow');
}

