$(function(){
		
	//ie only
	if($.browser.msie && $.browser.version < 9){
		$('#sitenav li a')
			.append('<span class="lt"></span><span class="rt"></span>')
			.css('position' ,'relative');
		$('#news, #promotion li a').append('<div id="top"></div><div id="bottom"></div>');
	}
	
	//textbox values
	/*swap_val = [];
	$(".input").each(function(i){
		swap_val[i] = $(this).val();
		$(this).focusin(function(){
			if ($(this).val() == swap_val[i]) {
				$(this).val("");
			}
		}).focusout(function(){
			if ($.trim($(this).val()) == "") {
				$(this).val(swap_val[i]);
			}
		});
		*/
		$('#sitenav li:last-child a').css('backgroundImage' , 'none');
		$('#lang li:last-child').css('border' , 'none');

});
