// JavaScript Document
$(document).ready(function() {
	var count = 0;
		
	$('#venue-pics img').each(function(index) {
		$(this).attr({
			'id' : 'image-'+ index
		}).css({'display':'none'});
	});
	
	$('#venue-info img').each(function(index) {
		$(this).css({'display':'none'}).fadeIn('slow');
	});
	
	
	var interval = setInterval(fadeIn, 500);
	
	function fadeIn() {		
		if(count==3) {
			clearInterval(interval);
		} else {
			$('#image-' + count).fadeIn('slow');
		}
		count ++;
	};
	
});

