	$(document).ready(function(){
		Cufon.replace('.contentheading, .componentheading, .cufon');
		//Cufon.replace('.ui-tabs-nav li a');
		
		$("#orderoline").validate(); 
		$("#more-upload").hide();
		$("#morefiles").click(function() {
			$("#more-upload").show();
		});
		$('.item18 a').addClass("thickbox");
		$('a.email').each(function(){
			e = this.rel.replace('/','@');
			this.href = 'mailto:' + e;
			$(this).text(e);
		});
		
		$("#tabs").tabs();
		
		$('.rollover').hover(function() {
           var currentImg = $(this).attr('src');
           $(this).attr('src', $(this).attr('hover'));
           $(this).attr('hover', currentImg);
       }, function() {
           var currentImg = $(this).attr('src');
           $(this).attr('src', $(this).attr('hover'));
           $(this).attr('hover', currentImg);
       });
		
		$('#text-container').hide();
					
		$('.trigger').click(function() {
						$('#text-container').show();
		});
					
		$('.trigger2').click(function() {
			$('#text-container').hide();
		});
		
	});
