jQuery(document).ready(function() {
	jQuery('a.postpopup').click(function(){
		id = jQuery(this).attr('rel');
		jQuery('<div id="ajax-popup"><img src="/wp-content/themes/gorgeousdoodles/images/ajax-loader.gif" id="ajax-loader-img"/>Loading puppy info...</div>').hide().appendTo('body').load('http://gorgeousdoodles.com/ajax-handler/?id='+id, function() {
		  jQuery('.whatever').find('a').removeAttr('onclick').removeAttr('href');}).modal({
			opacity:80,
			overlayCss: {backgroundColor:"#BF87A9"},
			position: [20]
		});
		
		return false;
	});
});