$(function(){
	
	$('a').click(function(){
		if($(this).attr('href')=='#'){
			$(this).css('cursor','default');
			return false
		}
	});

	$('a').filter(function() {
		var theHref = this;
		if (theHref.hostname && theHref.hostname !== location.hostname) {
			$(theHref).attr('target','_blank');
		}
	});
	
	$('a.popup').click(function (){
		window.open($(this).attr('href'), 'popup', 'width=650,height=500,scrollbars=yes');
		return false;
		
	});
	
	$(document).ready(function() {	
		$('.slideshow').each(function(){
			$(this).slideshow({
				timeout: 1000,
				type: 'sequence'
			});
		});
	});


});
