//　//
$(document).ready(function(){

	$('.itemstitle_shadow').removeShadow();
	$('.itemstitle_shadow').dropShadow({top:1, left:1, blur:1, opacity:0.5, color:'#000000'});
	$('.itemsimg_shadow').removeShadow();
	$('.itemsimg_shadow').dropShadow({top:5, left:5, blur:3, opacity:1, color:'#000000'});
	$('.titlewhite_shadow').removeShadow();
	$('.titlewhite_shadow').dropShadow({top:2, left:2, blur:2, opacity:1, color:'#000000'});

	enable_popup();

	var flgget_id = '';
	$(":input").keydown(function (event){
		var eventObject = event;
		if(window.event){ eventObject = window.event; }
		if(eventObject.keyCode === 13){	
			if((flgget_id === 'searchform_str_search')){
				GoSearchHeaderForm('searchform');
			}
		}
	});

	$("input").focus(function() { flgget_id = $(this).attr("id"); });
	$("input").blur(function() { flgget_id = ''; });

});
function onloadfunc(){
}

