$(function() {
	$(".blue").wrapInner(document.createElement("span"));
	$(".brown").wrapInner(document.createElement("span"));

	$('.gallery a').click(function(){
		$(".gallery div img").attr("src", $(this).attr("href"));
		$(".gallery div p").text($(this).attr("title"));
		return false;
	});
	
	var strHref = window.location.href;
	if ( strHref.indexOf("#") > -1 ){
		var strQueryString = strHref.substr(strHref.indexOf("#")+1);
		strQueryString = "#color_"+ strQueryString;
		
		$(".gallery div img").attr("src", $(strQueryString).attr("href"));
		$(".gallery div p").text($(strQueryString).attr("title"));
	}
	
	$(".color_links a").click(function(){
	strHref = this.href;
	if ( strHref.indexOf("#") > -1 ){
		var strQueryString = strHref.substr(strHref.indexOf("#")+1);
		strQueryString = "#color_"+ strQueryString;
		
		$(".gallery div img").attr("src", $(strQueryString).attr("href"));
		$(".gallery div p").text($(strQueryString).attr("title"));
	}
		return true;
	});

});