$(document).ready(function() {
	/**********************
    sidenav content rotater
	***********************/
	$('#content-rotator-inner').cycle({ 
	    fx: 'fade',
        timeout: 15000,
		speed:3500,
		sync:false
	});
	
	/**********************
    FAQs
	***********************/
	$("h2.faqType").click(function () {
        $('div.faqContent').not($("div#"+this.id+"Content")).slideUp("650");
		if ($("div#"+this.id+"Content").is(":hidden")) {
			$("div#"+this.id+"Content").slideDown("650");
		} else {
			$("div#"+this.id+"Content").slideUp("650");
		}
	});
	$("a.faq_nav").click(function (event) {
        $('div.faqContent').not($("div#TYPE"+this.rel+"Content")).slideUp("650");
        $("div#TYPE"+this.rel+"Content").slideDown("650");
		event.preventDefault();
	});

    /**********
    open external links in new window
	**********/
	$('a[href^="http://"]').click(function() {
		window.open( $(this).attr('href') );
		return false;
	});


});
