$( function() {
	
	$( "#imgSubmit" ).click( function() {
		window.document.forms[ "frmCulturalList" ].target = "ifrmList";
		window.document.forms[ "frmCulturalList" ].method.value = "getList";
		window.document.forms[ "frmCulturalList" ].prmSido.value = window.document.getElementById( "selSido" ).value;
		window.document.forms[ "frmCulturalList" ].prmPeriod.value = window.document.getElementById( "selPeriod" ).value;
		window.document.forms[ "frmCulturalList" ].prmKind.value = window.document.getElementById( "selKind" ).value;
		window.document.forms[ "frmCulturalList" ].submit();
	}).css( "cursor", "pointer" );
	
	$( "#btnSearch" ).click( function () {
		window.document.forms[ "frmCulturalList" ].method.value = "getSearchList";
		window.document.forms[ "frmCulturalList" ].prmKeyword.value = window.document.getElementById( "txtSearch" ).value;
		window.document.forms[ "frmCulturalList" ].prmSearchKind.value = window.document.getElementById( "selSearch" ).value;
		window.document.forms[ "frmCulturalList" ].submit();
		
	});	
	
	$( "#txtSearch" ).keydown( function( evt ) {
		var evtCode = ( window.netscape ) ? evt.which : event.keyCode;
		if( evtCode == 13 ) {
			window.document.forms[ "frmCulturalList" ].method.value = "getSearchList";
			window.document.forms[ "frmCulturalList" ].prmKeyword.value = window.document.getElementById( "txtSearch" ).value;
			window.document.forms[ "frmCulturalList" ].prmSearchKind.value = window.document.getElementById( "selSearch" ).value;
			window.document.forms[ "frmCulturalList" ].submit();
		}
	});
	
});

function goPage( num ) {
	window.document.forms[ "frmCulturalList" ].prmPagingNum.value = num;
	var keyword = window.document.getElementById( "strKeyword" ).value;
	if( keyword != "" ) {
		window.document.forms[ "frmCulturalList" ].method.value = "getSearchList";
		window.document.forms[ "frmCulturalList" ].prmKeyword.value = window.document.getElementById( "strKeyword" ).value;
		window.document.forms[ "frmCulturalList" ].prmSearchKind.value = window.document.getElementById( "strSearchKind" ).value;
	} else {
		window.document.forms[ "frmCulturalList" ].method.value = "getList";
		window.document.forms[ "frmCulturalList" ].prmSido.value = window.document.getElementById( "strSido" ).value;
		window.document.forms[ "frmCulturalList" ].prmPeriod.value = window.document.getElementById( "strPeriod" ).value;
		window.document.forms[ "frmCulturalList" ].prmKind.value = window.document.getElementById( "strKind" ).value;
	}	
	window.document.forms[ "frmCulturalList" ].submit();
}
