$(function($){

	$('.table_excel').each(function() {
		var html = $(this).children('table').children('tbody').children('tr').html();
		$(this).children('table').children('tbody').children('tr:first-child').html(html.split('td').join('th').split('TD').join('TH'))
		$(this).append('<div style="float: left; width: 26px; height: 27px; margin: -27px 0 0 0; background: #fff0c9 url(/templates/user/img/tableBottomLeft.png)"></div><div style="float: right; width: 26px; height: 27px; margin: -27px 0 0 0; background: #fff0c9 url(/templates/user/img/tableBottomRight.png)" class="corner_2"></div>');
		$(this).prepend('<div style="position: absolute; left: -; top: 0; width: 25px; height: 26px; margin: 0 0 0 0; background: #fff0c9 url(/templates/user/img/tableTopLeft.png)"></div><div style="position: absolute; right: 0; top: 0; width: 25px; height: 26px; margin: 0 0 0 0; background: #fff0c9 url(/templates/user/img/tableTopRight.png)"></div>');
	});
	$('.table_excel table tr').removeAttr('style');
	$('.table_excel table th').removeAttr('style').css('text-align','center');
	$('.table_excel table td').removeAttr('style');

	$('a.nyroModal').each(function() {
		$(this).click(function(e) {
			e.preventDefault();
			$.nyroModalManual({
				modal: true,
				content: $(this).html()
			});
			return false;
		});
	});
	$('#collageSlide').cycle({fx: 'fade'});
	$('.about').corner('25px');
	$('.about1').corner('25px');
	$('.text_2, .text_3, .text_4').hide();
	$('.ltext1').css('border-bottom','0').css('color','#000');

});

function click1() {
	$('.ltext1').css('border-bottom','0').css('color','#000');
	$('.ltext2, .ltext3, .ltext4').css('border-bottom','1px dashed #cc6633').css('color','#cc6633');
	$('.text_2, .text_3, .text_4').hide();
	$('.text_1').show();
}

function click2() {
	$('.ltext2').css('border-bottom','0').css('color','#000');
	$('.ltext1, .ltext3, .ltext4').css('border-bottom','1px dashed #cc6633').css('color','#cc6633');
	$('.text_1, .text_3, .text_4').hide();
	$('.text_2').show();
}

function click3() {
	$('.ltext3').css('border-bottom','0').css('color','#000');
	$('.ltext2, .ltext1, .ltext4').css('border-bottom','1px dashed #cc6633').css('color','#cc6633');
	$('.text_2, .text_1, .text_4').hide();
	$('.text_3').show();
}

function click4() {
	$('.ltext4').css('border-bottom','0').css('color','#000');
	$('.ltext1, .ltext2, .ltext3').css('border-bottom','1px dashed #cc6633').css('color','#cc6633');
	$('.text_1, .text_2, .text_3').hide();
	$('.text_4').show();
}

function clearForm(form) {
	$(form).each(function() {
		var type = this.type;
		var tag = this.tagName.toLowerCase(); // normalize case
		if (type == 'text' || type == 'password' || tag == 'textarea')
			this.value = "";
		else if (type == 'checkbox' || type == 'radio')
			this.checked = false;
		else if (tag == 'select')
			this.selectedIndex = -1;
	});
};
