$(document).ready(function(){

	$('a[rel=external]').click(function(){
		window.open( $(this).attr('href') );
		return false;
	}); 

	$("#title,#mainbanner,#savethedate").hide();


	$("#content2rs h3").each(function(){
		$(this).css({ 'backgroundImage' : 'url("/inc/utils/h3-tags.php?width=500&height=57&text=' + escape($(this).text()) + '")' });
	});


	$("#sidebar2rs h3").each(function(){
		$(this).css({ 'backgroundImage' : 'url("/inc/utils/h3-tags.php?width=210&height=57&text=' + escape($(this).text()) + '")' });
	});


	$("#mainbanner").fadeIn("slow",function(){
		$("#title").fadeIn("slow",function(){
			$("#savethedate").fadeIn("slow");		
		});
	});


	
});

