
$(document).ready(function() {
	
	if ($('.prefilled').length>0) {
		$('.prefilled').example(function() {
			return $(this).attr('title');
		});
	}
	
	if ($('.comment-textarea').length>0) {
		$('.comment-textarea').css('resize', 'none');
	}
	
	if ($('.social-icons ul').length>0) {
		$('.social-icons ul li:last').css('margin-right', '0px');
	}
	
	if ($('.advertise ul').length>0) {
		$('.advertise ul li:odd').css('margin-right', '0px');
	}
	
	if ($('#tabs').length>0) {
		$('#tabs').tabs();
	}
	
});
