$(document).ready(function() {
	$("ul.sf-menu").superfish({ animation: {height:'show'}, delay:     800});
	
	$(".images_popup:img").each(function() {

	
		
		
		var thumb = $("<div></div>").append( $(this).clone() ).html();
		var large = this.src.replace( /thumb/ ,	'large' ) ;
		var large = large.replace( /normal/ ,'large' ) ;
		var large = large.replace( /medium/ ,'large' ) ;

		

		
		$(this).replaceWith('<a href="'+large+'" rel="prettyPhoto" >'+thumb+'</a>');

	});

	$(".event-open").click(
		function() { 
			$(".small_calendar_event").hide();
			$(this).parent().find(".small_calendar_event").slideToggle();
			return false; 
			}
		
		);
		
		$(".small_calendar_event").click(
			function() { 
				
				$(this).show(); 
				}

			);
		
	
	$(".event_close").click(
		function() { 
			$(".small_calendar_event").hide();
			return false; 
			
			}
		
		);
		
		
		
		

		$("a[rel^='prettyPhoto']").prettyPhoto();
			


});