$(document).ready(function(){
	
	/* FAQ ACCORDION */
	var context = $('body.faq #content');//for performance
	$('blockquote', context).hide();
	$('p', context).click(function() {
		$(this).next('blockquote').slideToggle('fast');
	});
	$('p:first-child', context).trigger('click');//open 1st			
	
	// durable disclaimer
	$("#disclaimer").hover(function() {
		$(this).children("#first-para").hide();
		$(this).children('#rollover').stop(true, true).slideDown();
	}, function() {
		$(this).children("#rollover").slideUp('medium', function() {
			$("#first-para").fadeIn();
		});					
	});

	$("body.home #right-col").hover(function() {
		$(this).find('#rollover').stop(true, true).fadeIn();
	}, function() {
		$(this).find('#rollover').fadeOut();
	});

	$("#lifetime").hover(function() {
		$(this).next('p').stop(true, true).fadeIn();
	}, function() {
		$(this).next('p').fadeOut();				
	});			

	$("a[rel^='lightbox']").prettyPhoto();
	
	$("div.press-release a").click(function() {
		window.open (this.href, "mywindow","location=1,status=1,scrollbars=1, width=550,height=500");
		return false;
	});
	
});