$(function(){
	var Num = $('h2.title1').text();
	$('.bt_contact a').attr('href',$('.bt_contact a').attr('href') + '?' + Num);
	
	$('input[name="mailform09"]').val(decodeURI(location.search).slice(1,999));
	
	$('.s_img img').hover(
	function(){
	$(this).parent().next().children().fadeOut();
	$(this).clone().css('display','none').attr('width','').attr('height','').appendTo($(this).parent().next()).fadeIn();
	},
	function(){
		
	}
	);
});

