/*-----------------------------------------------------* Rockamenco.com Enquete Javascript
	* Version: 0.9
	* Created: 2008.2.13
	* Last Modified: 2008.2.13-----------------------------------------------------*/

$(document).ready(function() {

//Set JSON Data Place
	AjaxZip2.JSONDATA = '/jp/wp-content/themes/rockamenco/js/data';

//Set Fill in Address Timing
	$("#pcode").attr("onKeyUp", "AjaxZip2.zip2addr(this,'addr','addr');");
	$("#pcode").change(function(){ //only IE :-(
		AjaxZip2.zip2addr(this,'addr','addr');
	});

//Fill in Message
//via http://spreadsheet.sakura.ne.jp/labs/jquery/jquery_fillinMsg.html
	$('#date').fillinMsg('○月○日', '#A8A8A8', '#000000');
	$('#location').fillinMsg('AKASAKA BLITZ', '#A8A8A8', '#000000');
	$('#times').fillinMsg('○○', '#A8A8A8', '#000000');
	$('#information').fillinMsg('Rockamenco Webページを見て', '#A8A8A8', '#000000');
	$('#ticket').fillinMsg('チケットぴあ', '#A8A8A8', '#000000');
	$('#songs1').fillinMsg('曲名を書いてください', '#A8A8A8', '#000000');
	$('#songs2').fillinMsg('曲名を書いてください', '#A8A8A8', '#000000');
	$('#cd').fillinMsg('CD 購入店を記入', '#A8A8A8', '#000000');
	$('#others').fillinMsg('アーティストやバンド名などを書いてください', '#A8A8A8', '#000000');
	$('#impressions').fillinMsg('liveの感想を書いてください', '#A8A8A8', '#000000');
	$('#uname').fillinMsg('名字 名前', '#A8A8A8', '#000000');
	$('#pcode').fillinMsg('○○○-○○○○', '#A8A8A8', '#000000');
	$('#email').fillinMsg('mail@example.com', '#A8A8A8', '#000000');

//focus date input
	document.form.date.focus();

});