$(function(){
	jQuery.event.add(window, "load", resizeFrame);
	jQuery.event.add(window, "resize", resizeFrame);
	jQuery.event.add(window, "unload", resizeFrame);
	
	function resizeFrame() {
		
	}
	
	$("a").css({
		"cursor": "pointer"
	});
	
	$("input[type='button'], input[type='submit'], input[type='text'], input[type='password'], input[type='reset']").css({
		"overflow": "visible",
		"vertical-align": "middle"
	});
	
	$("input[type='button'], input[type='submit'], input[type='reset']").css({
		"cursor": "pointer"
	});
	
	//Control CSS Style
	//END-Control CSS Style
});
