// JavaScript Document
jQuery(document).ready(function(){
//home page slide show
	$('.blog').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		pause: 1,
		delay: 0,
		timeout: 7000
	});
	
	//external link
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
	});
});