// JavaScript Document
var $jj = jQuery;


$jj(document).ready(function(){
 	
$jj("#reloadgallery").bind("click", function(e){
											 
	$jj("div.headerimagescontent").fadeOut(1500, function(){
		var html = $jj.ajax({
  			url: "http://thedarksoul.org/blog/wp-content/themes/Crystal DS/reloadheaderpictures.php",
  			async: false
 		}).responseText;
		$jj("div.headerimagescontent").html(html);
		$jj("div.headerimagescontent").fadeIn(3000);
		
	})
	
	
	/*$jj("div.headerimagescontent").fadeOut(3000);
	
	var html = $jj.ajax({
  		url: "http://thedarksoul.org/blog/wp-content/themes/Crystal DS/reloadheaderpictures.php",
  		async: false
 	}).responseText;*/
	
	/*$jj("div.headerimagescontent").html(html);
	
	$jj("div.headerimagescontent").fadeIn(3000);*/

    });

});//Document Ready

