$(document).ready(function(){
	get_content(contentURL);
	$("li.menu_section").hoverIntent(
						function() 
						{ 
							$('ul', this).slideDown('fast');
						},
						function()
						{
							$('ul', this).slideUp('fast');
						}
	);
	$("a[rel^='prettyPhoto']").prettyPhoto(
								{
									slideshow: false,
									default_width: 900,
									default_height: 668,
									social_tools: '',
									deeplinking: false
								}
	);
	$("a[rel^='display_center']").click(
						function() 
						{
							var runMethod = ($(this).attr('rel').split('::'))[1];
							$('#display_center').fadeOut('fast',function() 
																{ 
																	eval(runMethod);
																	$('#display_center').fadeIn('slow','swing');
																}
							);
						}
	);
	$.ajax({
						url: "php/getEvents.php",
						cache: false,
						success: function(html)
								 {
												$("#event_info").append(html);
								 }
	});
});
$("a[rel^='prettyPhoto']").live("click",function() 
									{
										$.prettyPhoto.open($(this).attr("href"),"","");
										return false;
									}
);

