/*********************************************
 *********************************************

		Author: Joe Edelmann
	   Website: www.teamdigital.com
	Copyright©: Joe Edelmann / teamDigital

 *********************************************
 *********************************************/


$(document).ready(function() {

	/* -----------------------------------------------------------------------------
	 * Function: Open rel="external" href's in new window
	 * Purpose:  Keep html clean, open rel="external" links in new window
	 * ---------------------------------------------------------------------------*/
	$('a[rel=external], a[rel=new]').click(function() {
		window.open(this.href);
		return false;
	});

	if ($('body').hasClass('attachment')) {
		var content_div = $('#content').offset();
		$(window).scrollTop(content_div.top);
	}

});
