$(document).ready(function(){
		
	//Display Loading Image
	function Display_Load()
	{
	  $("#loading").fadeIn(900,0);
		$("#loading").html("<img src='bigLoader.gif' />");
	}
	//Hide Loading Image
	function Hide_Load()
	{
		$("#loading").fadeOut('slow');
	};
	

   //Default Starting Page Results
   
	$("#eventos_pag li:eq(1)").addClass('active')
	
	Display_Load();
	
	$("#nuevo_content_m").load("http://sweethomewaimanalo.com/wp-content/themes/sandbox/pagination/pagination_data_productos_m.php?page=1", Hide_Load());



	//Pagination Click
	$("#pagination li.page_e").click(function(){
			
		Display_Load();
		
		//CSS Styles
		//$("#pagination li")
		//.css({'border' : 'solid #dddddd 1px'})
		//.css({'color' : '#0063DC'});
		
		//$(this)
		//.css({'color' : '#FF0084'})
		//.css({'border' : 'none'});

		//Loading Data
		var pageNum = this.id;
		$('#eventos_pag #pagination li').removeClass('active');
		$(this).addClass('active');
		
		$("#nuevo_content_m").load("http://sweethomewaimanalo.com/wp-content/themes/sandbox/pagination/pagination_data_productos_m.php?page=" + pageNum, Hide_Load());
	});
	
	
});

