var site_url = 'http://www.smash-bros.nl/';

$(document).ready(function(){

	// Open links to external pages in a new window
	$('body a[rel="external"]').live('click', function(event) {
		window.open($(this).attr('href'));
		event.preventDefault();
	})
	
	// Make the user confirm a delete action
	$('body a[rel="confirmDelete"]').live('click', function(event) {
		if(!confirm('Weet je het zeker?'))
		{
			event.preventDefault();
		}
	})
	
	// Set tabs to all classes called tabs
	$('.tabs').tabs();
	
});
