jQuery().ready(function(){

	/********************************************** Scroll To */
	jQuery('DIV#content DIV.entry-bar A.comments-action-link').click(function(){
		jQuery.scrollTo(this.hash,{
			offset:-68,
			duration: 1000,
			onAfter:function(){
				jQuery("#respond").effect("highlight", {color: "#E6DB55"}, 1000);
			}
		});
		return false;
	});

	/********************************************** Highlight */
	jQuery('A#email-highlight').click(function(){
		jQuery.scrollTo(this.hash,{
			offset:-15,
			duration: 350,
			onAfter:function(){
				jQuery("#feedburner_subscribe-5 FORM.feedburner").effect("highlight", {color: "#EF4269"}, 1000);
			}
		});
		return false;
	});

	/************ Add nativ Wordpress Thickbox to post A IMGs */
	jQuery("DIV#content DIV.entry-content A IMG").parent("A").addClass("thickbox").attr('rel','gallery')
;

});

