$(function(){
		
	//ie only
	
	if($.browser.msie && $.browser.version < 9){
	
		$('#sitenav li:first-child').addClass('first');
		
		$('#content_image, .banner, .small_button, .green_button, .green_button_small')
			.append('<span class="lt"></span><span class="rt"></span><span class="lb"></span><span class="rb"></span>')
			.css('position' ,'relative');
	}
	
	
	
	
	//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]);
			}
		});
	});
	*/

});

$(window).load(function() {
	
	//front nav height
	var maxHeight=0;
    $('.equal_height').each(function(){
        if($(this).height()>maxHeight)
            maxHeight=$(this).height();
    });
	$('.equal_height').css('height', maxHeight);
	
});
